export type CheckResult = { path: string; exists: boolean; readable: boolean; writable: boolean; isFile: boolean; isDirectory: boolean; }; export declare function checkPath(p: string): Promise;