import { Command } from 'commander'; interface StartInvokeOptions { worktreePath?: string; worktreeLabel?: string; groupDefinitionNameOverride?: string; startAll?: boolean; } export declare const startCommand: ReturnType; export declare function runStartCommand(groupName?: string, processName?: string, invokeOptions?: StartInvokeOptions): Promise; declare function createStartCommand(): Command; export {};