import type { PlatformAdapter } from "./types.js"; export declare function dispatchA2AContinuation(continuationId: string, webhookBaseUrl?: string): Promise; export declare function processA2AContinuationById(continuationId: string, options: { adapters: Map; }): Promise; export declare function processDueA2AContinuations(options: { adapters: Map; limit?: number; }): Promise; /** * Durable scheduler wake-up only: make a bounded set of due/stale rows * eligible, then invoke their normal processors. It never polls remote A2A * tasks or runs a mutation itself, keeping the scheduled route within its * short execution budget. Duplicate wake-ups are safe because each processor * still takes the store's atomic claim before it can progress or deliver. */ export declare function recoverDueA2AContinuations(options?: { limit?: number; webhookBaseUrl?: string; }): Promise<{ dispatched: number; failed: number; }>; //# sourceMappingURL=a2a-continuation-processor.d.ts.map