interface Parse {
    <T = any>(text: string, reviver?: ((this: any, key: string, value: any) => any) | null): T;
}
declare const parse: Parse;
declare const stringify: (parsed: Record<string, any>) => string;
export { parse, stringify };
