export declare class NonError extends Error {
    name: string;
    constructor(message: any);
    static _prepareSuperMessage(message: any): string;
}
export declare function serializeError(value: any, options?: {}): any;
export declare function deserializeError(value: any, options?: {}): any;
export declare function isErrorLike(value: any): boolean;
export { default as errorConstructors } from './error-constructors.js';
