import type { IPendingToolConfirmation } from "../../../chat/browser/voiceClient/voiceSessionController.js"; export interface ToolConfirmationsProps { readonly confirmations: readonly IPendingToolConfirmation[]; readonly onOpenSession: (resource: IPendingToolConfirmation["sessionResource"]) => void; } export interface ToolConfirmationsComponent { readonly element: HTMLElement; update(props: ToolConfirmationsProps): void; } export declare function createToolConfirmations(): ToolConfirmationsComponent;