import React from 'react'; import type { SuperagentToolCall, SuperagentToolRendererProps } from '../types'; /** * Batch approval for 2+ pending update_entities/delete_entities calls — * native port of the web ToolCallsContainer batch UI: one checkbox per * pending call, "Approve (n)" approves the checked calls AND rejects the * unchecked ones, "Reject All" rejects everything. The web submits through a * batch endpoint that resumes each call individually; native has no batch * route, so the same per-call approved/rejected submissions go out * sequentially (approvals first — the turn resumes after the last one). */ export declare function EntityApprovalBatchCard({ isLastAssistantMessage, submitToolCallInput, toolCalls, }: { isLastAssistantMessage?: boolean; submitToolCallInput?: SuperagentToolRendererProps['submitToolCallInput']; toolCalls: SuperagentToolCall[]; }): React.JSX.Element; //# sourceMappingURL=EntityApprovalBatchCard.d.ts.map