import { PathLike } from 'node:fs'; export declare function resolveRelativePath(childPath: string, relativeDirectory?: string | null): string; export declare function resolveConfigPath(childPath: string, configPath: string | null): string; export declare function isLocalModulePath(modulePath: string): boolean; export declare function readJson(filePath: string): Promise; export declare function readFile(filePath: string): Promise; export declare function writeFile(filePath: string, content: string): Promise; export declare function canRead(p: PathLike): Promise; export declare function canWrite(p: PathLike): Promise; //# sourceMappingURL=fs.d.ts.map