import { FilePath } from '../../typings/opaque'; export declare function createFolderIfNotExists(path: FilePath): Promise; export declare function saveText(text: string, path: FilePath): Promise; export declare function saveYaml(config: T, path: FilePath): Promise; export declare function readJson(path: FilePath): Promise;