import type { ErrorLevel, Result } from '../../../mod.js'; import { AnyError } from '../anyError/mod.js'; /** ## SerializeError : 序列化失败的错误 @deflevel `Error` @defcasue `serialize error` @class Error */ export declare class SerializeError extends AnyError<'Error'> { constructor(cause?: string, nl?: ErrorLevel); static new(cause?: string, nl?: ErrorLevel): SerializeError; static err(cause?: string, nl?: ErrorLevel): Result; } //# sourceMappingURL=serializeError.d.ts.map