import { type AutomationRuntime } from "./types.js"; import { type DrizzleExecutor } from "../drizzle.js"; import { type MutationHint } from "../chat/types.js"; /** * Requires server-administrator authority and executes one automation immediately with a caller-supplied or generated manual trigger identifier. * Generating the trigger identity before dispatch gives the run the same deduplication boundary as event-initiated automation executions. */ export declare function automationRunNow(executor: DrizzleExecutor, options: AutomationRuntime, actorUserId: string, automationId: string, triggerEventId?: string): Promise<{ hint?: MutationHint; runId: string; }>; //# sourceMappingURL=automationRunNow.d.ts.map