import { CSVOptions, AnyObject } from './types'; export declare function parseYAML(content: string): AnyObject; export declare function parseCSV(content: string, options: CSVOptions): AnyObject[]; export declare function stringifyYAML(obj: AnyObject, indent?: number): string; export declare function stringifyCSV(objects: AnyObject[], options: CSVOptions): string;