/** * Strip JSONC comments while preserving strings that contain // or /* sequences. * Uses a state machine to track whether we're inside a string literal. */ export declare function stripJsonComments(content: string): string; export declare function readJsonWithComments(filePath: string): Record; export declare function writeJson(filePath: string, data: Record): void; //# sourceMappingURL=jsonc.d.ts.map