type TomlPrimitive = string | number | boolean | { [key: string]: TomlPrimitive; } | TomlPrimitive[]; export declare function ensureTomlModuleLoaded(): Promise; export declare const parse: (toml: string) => Record; export {};