import { type ParseOptions } from "@std/cli/parse-args"; export declare const sync: (basePath: string, outDir?: string) => Promise; export interface SyncOptions extends ParseOptions { outDir?: string; watch?: boolean; _: (string | number)[]; } /** * 封装了 sync 命令的核心执行逻辑 * @param args - 命令行参数,符合 yargs 解析后的结构 */ export declare const doSync: (args: SyncOptions) => void; //# sourceMappingURL=sync.d.ts.map