/**
 * Error type for codec failures that carries the full property path for diagnostics.
 */
export declare class CodecError extends Error {
    readonly path: string;
    readonly cause?: Error | undefined;
    constructor(message: string, path: string, cause?: Error | undefined);
}
