/**
 * @module Serde
 */
/**
 *
 * IMPORT_PATH: `"@daiso-tech/core/serde/contracts"`
 * @group Errors
 */
export declare class SerdeError extends Error {
    constructor(message: string, cause?: unknown);
}
/**
 * The error occurs when a value is unable to be serialized.
 *
 * IMPORT_PATH: `"@daiso-tech/core/serde/contracts"`
 * @group Errors
 */
export declare class SerializationSerdeError extends SerdeError {
    constructor(message: string, cause?: unknown);
}
/**
 * The error occurs when a value is unable to be deserialized.
 *
 * IMPORT_PATH: `"@daiso-tech/core/serde/contracts"`
 * @group Errors
 */
export declare class DeserializationSerdeError extends SerdeError {
    constructor(message: string, cause?: unknown);
}
/**
 *
 * IMPORT_PATH: `"@daiso-tech/core/serde/contracts"`
 * @group Errors
 */
export declare const SERDE_ERRORS: {
    readonly Base: typeof SerdeError;
    readonly Serialization: typeof SerializationSerdeError;
    readonly Deserialization: typeof DeserializationSerdeError;
};
