import { type ParseOptions } from 'jsonc-parser'; export declare const MAX_STRICT_JSON_DEPTH = 128; /** Validate a bounded JSON/JSONC document without allowing duplicate keys or non-finite numbers. */ export declare function assertStrictJsonSyntax(source: string, options: ParseOptions, message: string): void; /** Parse standard JSON after applying the shared strict syntax and identity checks. */ export declare function parseStrictJson(source: string, options: ParseOptions, message: string): unknown; //# sourceMappingURL=strict-json.d.ts.map