/**
 * Workflow JSON Processor
 *
 * Extracts and parses n8n workflow JSON from AI responses
 */
export interface WorkflowDetectionResult {
    hasWorkflow: boolean;
    isPartial: boolean;
    workflowJSON?: any;
    cleanContent: string;
}
export declare function extractWorkflowJSON(text: string): WorkflowDetectionResult;
//# sourceMappingURL=processor.d.ts.map