/** * Submit Command * Submit skills to the marketplace * (SkillKit calls this "publish submit" — we call it "submit") */ import { Command } from 'commander'; export interface SubmitOptions { dryRun?: boolean; name?: string; } /** * Register the submit command with commander */ export declare function registerSubmitCommand(program: Command): void; //# sourceMappingURL=submit.d.ts.map