/** * Creates a tmp directory * * @returns path to created tmp directory and callback to delete it once it's not needed anymore */ export declare function createTmpDirectory(namePrefix: string): Promise<{ path: string; cleanup: () => Promise; }>;