/** * Task: * * Ensure path is empty which means that all of the following are true * * - no file exists at path * - no dir exists at path or if a dir exists it has no files or subdirectories * in it */ export declare function ensureEmpty(path: string): void;