/** * ralph-starter linear — Interactive Linear issues wizard * * Guides the user through selecting Linear issues to work on: * 1. Authenticate (Linear CLI or API key) * 2. Browse teams + issues or paste a URL * 3. Select an issue * 4. Delegate to run command */ export type LinearWizardOptions = { commit?: boolean; push?: boolean; pr?: boolean; validate?: boolean; maxIterations?: number; agent?: string; }; export declare function linearCommand(options: LinearWizardOptions): Promise; //# sourceMappingURL=linear.d.ts.map