import { Result } from"neverthrow";
/**
* Parses YAML content and returns the parsed object.
*
* @paramcontent - The YAML content to parse
* @returns Result with parsed YAML object or error
*/exportdeclareconstparseYaml: (content: string) =>Result<any, Error>;