import { IOptions as GlobOptions } from 'glob'; export declare function exists(path: string, cwd?: string): Promise; export declare function deleteFile(path: string, cwd?: string): Promise; export declare function readText(path: string, cwd?: string): Promise; export declare function writeText(path: string, data: string, cwd?: string): Promise; export declare function readJson(path: string, cwd?: string): Promise; export declare function writeJson(path: string, data: Record, cwd?: string): Promise; type ListOptions = GlobOptions & { extensions?: string[]; }; export declare function list(pattern: string, cwd: string, options?: ListOptions): Promise; export declare function resolveFilesSync(options: Array, extensions: string[]): Array; export {};