type Replacer = ((this: any, key: string, value: any) => any) | Array | null; type Reviver = ((this: any, key: string, value: any) => any) | null; declare const stringify: (value: any, replacer?: Replacer, space?: string | number) => string; declare const stringify_UNSAFE: (value: any, replacer?: Replacer, space?: string | number) => string; declare const parse: (text: string, reviver?: Reviver) => T; declare const parse_UNSAFE: (text: string, reviver?: Reviver) => T; declare const _default: { stringify: (value: any, replacer?: Replacer, space?: string | number) => string; parse: (text: string, reviver?: Reviver) => T; }; export { _default as default, parse, parse_UNSAFE, stringify, stringify_UNSAFE };