interface ResourceValue { id?: string; title: string; } type ParsedJsonReplacerResult = ResourceValue | string | null; declare const parsedJsonReplacer: (key: string, value: null | ResourceValue) => ParsedJsonReplacerResult; export default parsedJsonReplacer; //# sourceMappingURL=parsedJsonReplacer.d.ts.map