import type { OperationHandler } from '@db-studio/types'; export declare function getFlowManager(): FlowManager; declare class FlowManager { private isLoaded; private operations; private triggerHandlers; private operationFlowHandlers; private webhookFlowHandlers; private reloadQueue; constructor(); initialize(): Promise; reload(): Promise; addOperation(id: string, operation: OperationHandler): void; clearOperations(): void; runOperationFlow(id: string, data: unknown, context: Record): Promise; runWebhookFlow(id: string, data: unknown, context: Record): Promise; private load; private unload; private executeFlow; private executeOperation; } export {};