/** * Recursively finds all YAML files in a directory. * * @param directory - The absolute path to the directory to search. * @returns A promise that resolves to an array of absolute paths to YAML files. */ export declare function findYamlFilesRecursive(directory: string): Promise;