export type TmpLocation = { path: string; exists: () => Promise; delete: () => Promise; }; export declare function tmpTemplateArchiveFile(name: string): TmpLocation; export declare function tmpTemplateDirectory(name: string): TmpLocation; export declare function tmpLocation(path: string): TmpLocation;