import type { IExecuteFunctions, ISupplyDataFunctions } from 'n8n-workflow'; type CompositeContext = IExecuteFunctions | ISupplyDataFunctions; /** * Execute a composite workflow operation. * Returns JSON string compatible with executeAiTool return type. * Called from tool-executor.ts (AI Tools path) and actions/workflows.ts (standard node path). */ export declare function executeComposite(context: CompositeContext, resource: string, operation: string, tenantFilter: string, params: Record, failMode: 'fast' | 'bestEffort'): Promise; export {}; //# sourceMappingURL=composite-executor.d.ts.map