import type { DevToolsSys } from "../types"; interface DevToolsNodeSysOptions { cwd: string; skipValidate?: boolean; ignoreMissingConfig?: boolean; } export declare function createDevToolsNodeSys(opts: DevToolsNodeSysOptions): Promise; export declare function configHasProperty(contents: Record, key: string): boolean; export declare function readConfigFile(): Promise; export declare function writeConfigFile(contents: Record): Promise; export declare function getGitRemoteURL(repoPath: string): string; export declare function findPackageJsonDir(dir: string): string | null; export declare function findAppRootDir(dir: string): string | null; export {};