/**
 * Check whether the path already exist.
 * @param {String} path
 * @return {Boolean}
 */
export declare function folderExists(path: string): boolean;
/**
 * Check whether the file already exist.
 * @param {String} path
 * @return {Boolean}
 */
export declare function fileExists(path: string): boolean;
