import { Document } from 'yaml'; /** * Reads a YAML file and returns both its raw content and parsed Document. * * @param filePath - Path to the YAML file. * @returns Parsed YAML document along with original content. */ export declare function readYamlDocument(filePath: string): Promise<{ document: Document; content: string; }>;