export function makeIdentifier(name: string): string; export function copyFile(src: string, dest: string): Promise; export function createNumbered(name: string, separator: string, creator: (path: string) => Promise, startNum?: number): Promise; export function createNumberedTemplate(template: string, creator: (path: string) => Promise): Promise; export function createExclusive(path: string): Promise; export function realPath(path: string): Promise; export function pathExists(path: string): Promise; export function isSameFile(path1: string, path2: string): Promise;