export type JSONValue = string | number | boolean | null | {
    [key: string]: JSONValue;
} | JSONValue[] | Record<string, unknown>;
export interface ErrorDetail {
    message: string;
    code: string;
    context?: Record<string, JSONValue>;
}
export declare function toJSONValue(value: unknown): JSONValue;
