export declare const retryAttempt: { name: string; description: string; inputSchema: { type: string; properties: { attempt_id: { type: string; description: string; }; resume_from: { type: string; description: string; }; retry_params: { type: string; description: string; }; force: { type: string; description: string; }; }; required: string[]; }; handler: (args: unknown) => Promise<{ new_attempt_id: string; session_id: string; message: string; resumed_from: string | undefined; }>; }; //# sourceMappingURL=retry-attempt.d.ts.map