import { CommandDef } from "citty"; //#region src/main.d.ts declare const main: CommandDef; //#endregion //#region src/run.d.ts declare const runMain: () => Promise; declare function runCommand(name: "init", argv?: string[], data?: { overrides?: Record; }): Promise<{ result: unknown; }>; //#endregion export { main, runCommand, runMain };