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