export declare interface FormatOptions { keyAlignment?: boolean; } /** * Parse parses TOML string into an object. * @param tomlString */ export declare const parse: (tomlString: string) => Record; /** * Stringify dumps source object into TOML string and returns it. * @param srcObj * @param [fmtOptions] format options * @param [fmtOptions.keyAlignment] whether to algin key */ export declare function stringify(srcObj: Record, fmtOptions?: FormatOptions): string; export { }