export declare const NOTIFICATION_DISPATCH_WORKFLOW_ID = "__mastra_notification_dispatcher";
export declare const NOTIFICATION_DISPATCH_SCHEDULE_ID = "dispatch";
export type NotificationDispatchConfig = {
    /** Defaults to true. Set false to opt out of automatic scheduled dispatch. */
    enabled?: boolean;
    cron?: string;
    batchSize?: number;
};
export declare function parseNotificationDispatchNow(input?: string): Date;
export declare function createNotificationDispatchWorkflow({ cron, batchSize, }?: Omit<NotificationDispatchConfig, 'enabled'>): import("../workflows").Workflow<import("../workflows/evented").EventedEngineType, import("../workflows").Step<string, any, any, any, any, any, import("../workflows/evented").EventedEngineType, unknown>[], "__mastra_notification_dispatcher", unknown, {
    now?: string | undefined;
    limit?: number | undefined;
}, {
    delivered: number;
    failed: number;
}, {
    delivered: number;
    failed: number;
}, unknown>;
//# sourceMappingURL=workflow.d.ts.map