import type { WorkerOptions, WorkerPlugin } from '@temporalio/worker'; export declare class MastraPlugin implements WorkerPlugin { #private; private readonly entryFile; private readonly projectRoot; name: string; constructor(entryFile: string, projectRoot?: string); /** * @deprecated Please use the constructor params instead. */ prebuild({ entryFile, projectRoot, }: { entryFile: string; projectRoot?: string; }): Promise>; getTemporalWorkerOptions(temporalOutputDir: string): { workflowsPath: WorkerOptions['workflowsPath']; activities: WorkerOptions['activities']; }; configureWorker(options: WorkerOptions): Promise; } //# sourceMappingURL=plugin.d.ts.map