/**
 * Returns an array with all the file names in the given directory
 */
export declare function Walk(dir: string): Promise<string[]>;
export declare function Exits(path: string): Promise<boolean>;
