import { type AutomationRuntime } from "./types.js"; import { type DrizzleExecutor } from "../drizzle.js"; import { type MutationHint } from "../chat/types.js"; /** * Runs ordered syncEvents after serverSyncState.automationEventSequence and advances that cursor after each successful sequence. * Updating the cursor only after automationRunEvent completes makes restart retry a failed sequence instead of silently skipping it. */ export declare function automationRunPendingEvents(executor: DrizzleExecutor, options: AutomationRuntime, limit?: number): Promise; //# sourceMappingURL=automationRunPendingEvents.d.ts.map