type JSON = { parse: (text: string) => any; stringify: (value: any) => string; }; declare const JSONBig: JSON; /** * Safely stringify a value to JSON, handling circular references and non-serializable objects. * Uses fast-safe-stringify for optimal performance and reliability. * * @param value The value to stringify * @returns JSON string representation of the value */ export declare function safeJsonStringify(value: any): string; export { JSONBig };