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