import { WorkflowType } from '../schemas/workflow-schema'; export interface CreateWorkflowResponse { success: boolean; workflowId: string; workflow: any; } export interface ValidationResult { valid: boolean; errors: string[]; } export declare class N8nService { private client; constructor(instanceUrl: string, apiKey: string); createWorkflow(workflow: WorkflowType, autoActivate?: boolean): Promise; validateWorkflow(workflow: WorkflowType): Promise; getWorkflow(workflowId: string): Promise; activateWorkflow(workflowId: string): Promise; testConnection(): Promise; } //# sourceMappingURL=n8n-service.d.ts.map