/** * Adapted from https://github.com/wellwelwel/jsonc.min */ declare class JsoncProcessor { toJSON(content: string): string; parse(text: string): T; } export declare const JSONC: JsoncProcessor; export {};