export interface BuildTemporalWorkflowOptions { } export interface TemporalWorkflowExport { exportName: string; workflowId: string; } export interface BuildTemporalWorkflowModuleResult { code: string; workflows: TemporalWorkflowExport[]; } /** * Transforms a user-authored workflow module into a Temporal-friendly module: * - strips Mastra/Temporal setup that cannot run in the workflow sandbox * - rewrites fluent workflow chains into deterministic exported functions * - returns registry metadata so the entry module can re-export the right names */ export declare function buildTemporalWorkflowModule(entryFile: string, outputDirectory: string, outputFileName: string): Promise<{ outputPath: string; }>; //# sourceMappingURL=workflows.d.ts.map