declare module 'devalue' { /** * Turn a value into the JavaScript that creates an equivalent value * */ export function uneval(value: any, replacer?: (value: any) => string | void): string; /** * Turn a value into a JSON string that can be parsed with `devalue.parse` * */ export function stringify(value: any, reducers?: Record any>): string; /** * Revive a value serialized with `devalue.stringify` * */ export function parse(serialized: string, revivers?: Record any>): any; /** * Revive a value flattened with `devalue.stringify` * */ export function unflatten(parsed: number | any[], revivers?: Record any>): any; } //# sourceMappingURL=index.d.ts.map