/** Is the path visible to the calling process? */ export declare const F_OK = 0; /** Is the path readable to the calling process? */ export declare const R_OK = 4; /** Is the path writable to the calling process? */ export declare const W_OK = 2; /** Is the path executable to the calling process? */ export declare const X_OK = 1; /** Returns a Promise that rejects with an error if the path is not accessible. */ export declare function accessible(path: string | Array, mode?: number): Promise; export default accessible; /** Returns a Promise that resolves to a boolean indicating if the path is accessible or not. */ export declare function isAccessible(path: string, mode?: number): Promise; export declare function isAccessible(path: Array, mode?: number): Promise>; //# sourceMappingURL=index.d.ts.map