/**
 * Checks if given path is readable.
 *
 * @param path - The path to check.
 * @returns True if path is readable, false if not.
 */
export declare function isPathReadable(path: string): Promise<boolean>;
/**
 * Checks if given path is a directory.
 *
 * @param path - The path to check.
 * @returns True if path is a directory, false if not.
 */
export declare function isDirectory(path: string): Promise<boolean>;
