/**
 * Read and parse a YAML file asynchronously with caching.
 */
export declare function readYamlFile<T>(filePath: string): Promise<T>;
/**
 * Read and parse multiple YAML files in parallel with caching.
 */
export declare function readYamlFiles<T>(filePaths: string[]): Promise<T[]>;
/**
 * Preload YAML files into cache
 */
export declare function preloadYamlFiles(filePaths: string[]): Promise<void>;
