declare const renameFiles: { gitignore: string; gitkeep: string; 'README-template.md': string; }; type WriteOptions = { file: keyof typeof renameFiles | string; content?: string; out: string; templateDir: string; }; export declare const write: ({ file, content, out, templateDir, }: WriteOptions) => Promise; export declare const emptyDir: (dir: string) => Promise; export declare const isDirEmpty: (dir: string) => Promise; export declare const makeDir: (dir: string) => Promise; export {};