export declare function exists(path: string): Promise<boolean>;
export declare function clearDir(path: string): Promise<void>;
export declare function findup<T>(rootDir: string, fn: (dir: string) => T | undefined): T | null;
