import { type DrizzleExecutor } from "../drizzle.js"; import { type QueuedWebhookDelivery } from "../integrations/types.js"; /** * Backfills delivery rows for the oldest sync sequences that still match an outgoing subscription but have not been queued. * Each sequence delegates conflict-safe insertion to the event enqueue path, allowing a worker to retry this scan without duplicating deliveries. */ export declare function webhookDeliveryEnqueuePendingSyncEvents(executor: DrizzleExecutor, nowProvider: () => Date, limit?: number): Promise; //# sourceMappingURL=webhookDeliveryEnqueuePendingSyncEvents.d.ts.map