/// /// /// export declare const run: (command: string, options?: import("child_process").ExecSyncOptions | undefined) => string; export declare const read: (path: import("fs").PathOrFileDescriptor, options?: (import("fs").ObjectEncodingOptions & { flag?: string | undefined; }) | BufferEncoding | null | undefined) => string; export declare const remove: (path: string) => void; export declare const isFile: (path: string) => boolean; export declare const ask: (prompt: string) => Promise; export declare const isOnline: () => Promise; export { writeFileSync as write } from "node:fs";