export interface Yaml { start: number; text: string; } export declare function dump(obj: object, indent: number): string; export declare function load(file: string, contents: string, assignLines?: boolean): any;