/** * Orchestrator Processor import { getErrorMessage } from './../../types/common'; * * Processes instructions from orchestrator and creates Jira tickets */ export interface ProcessOrchestratorOptions { projectRoot?: string; projectKey?: string; issueType?: string; epicKey?: string; labels?: string[]; dryRun?: boolean; } export interface ProcessResult { total: number; processed: number; created: number; failed: number; results: Array<{ instructionId: string; success: boolean; issueKey?: string; issueUrl?: string; error?: string; }>; } /** * Process instructions from orchestrator */ export declare function processOrchestratorInstructions(options?: ProcessOrchestratorOptions): Promise; //# sourceMappingURL=orchestrator-processor.d.ts.map