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