import { type AutomationRuntime } from "./types.js"; import { type DrizzleExecutor } from "../drizzle.js"; import { type MutationHint } from "../chat/types.js"; /** * Executes active scheduled automations whose nextRunAt is due, oldest first, using the scheduled timestamp as the trigger identity. * Continuing after an individual failure lets the durable run and last-error records explain that failure without starving later due definitions. */ export declare function automationRunDue(executor: DrizzleExecutor, options: AutomationRuntime, limit?: number): Promise; //# sourceMappingURL=automationRunDue.d.ts.map