import type { LoadOptions, DumpOptions } from 'js-yaml';
export declare const parseYaml: (str: string, opts?: LoadOptions) => unknown;
export declare const stringifyYaml: (obj: any, opts?: DumpOptions) => string;
