import type { SystemContext } from "@rechakra/react"; interface ReadResult { mod: SystemContext; dependencies: string[]; } export declare const read: (file: string) => Promise; export declare function ensureDir(dirPath: string): void; export declare const write: (path: string, file: string, content: Promise) => Promise; export declare function watch(paths: string[], cb: () => Promise): void; export declare function clean(basePath: string): Promise; export {};