import { type AutomationRuntime } from "./types.js"; import { type DrizzleExecutor } from "../drizzle.js"; import { type MutationHint } from "../chat/types.js"; /** * Matches one positive sync sequence against older active event automations, including whether a referenced message was automated, then executes each match. * Using the durable sync-event identifier as the trigger key makes replay safe while excluding definitions created after the event they would consume. */ export declare function automationRunEvent(executor: DrizzleExecutor, options: AutomationRuntime, sequence: number): Promise; //# sourceMappingURL=automationRunEvent.d.ts.map