/** * JSON configuration source */ import { FileConfigSource } from './file-source.js'; export declare class JsonConfigSource extends FileConfigSource { constructor(filePath: string, name?: string, priority?: number); protected parseContent(content: string): Record; protected stringifyContent(config: Record): string; } //# sourceMappingURL=json-source.d.ts.map