/** * Submit Command * * Implements the submit command that spawns an agent, streams output, and follows until completion. */ import type { SubmitOptions, SubmitResult } from '../state/types.js'; /** * Submit command implementation */ export declare function submitCommand(options: SubmitOptions): Promise; /** * Register submit command with Commander program */ export declare function registerSubmitCommand(program: any): void; //# sourceMappingURL=submit.d.ts.map