import { readFileSync } from 'node:fs';
export type YamlFileReader = (path: string) => Record<string, unknown>;
export declare function createYamlFileReader(fsReadFileSync: typeof readFileSync): YamlFileReader;
