import { CommandModule } from "yargs"; import { BuildGpu } from "../../bindings/types.js"; type InitCommand = { name?: string; template?: string; model?: string; gpu?: BuildGpu | "auto"; }; export declare const InitCommand: CommandModule; export declare const CreateCliCommand: CommandModule; export declare function InitCommandHandler({ name, template, model, gpu }: InitCommand): Promise; export {};