import type React from 'react'; export interface EscConfirmPromptProps { runningTools: string[]; subagentCount: number; onConfirm: () => void; onCancel: () => void; } /** * Confirmation dialog shown when the user presses Esc mid-iteration and * `confirmExit` is enabled. Prevents accidental interruption of a running * agent — the agent keeps working until the user explicitly says yes. * * - y / Enter → confirm the interrupt * - n / Esc → cancel, let the agent continue */ export declare function EscConfirmPrompt({ runningTools, subagentCount, onConfirm, onCancel, }: EscConfirmPromptProps): React.ReactElement; //# sourceMappingURL=esc-confirm-prompt.d.ts.map