import type { AgentControls } from '../context/LiveAgentContext'; interface StartSessionPromptProps { onStartSession: (opts: { agentId: string; agentControls?: AgentControls; }) => void; agentId: string | null; agentControls?: AgentControls | undefined; isStarting?: boolean; error?: string; label?: string; canResume?: boolean; onResume?: () => void; } export declare function StartSessionPrompt({ onStartSession, agentId, agentControls, isStarting, error, label, canResume, onResume, }: StartSessionPromptProps): import("react/jsx-runtime").JSX.Element; export {};