import * as react_jsx_runtime from 'react/jsx-runtime'; /** * Sidebar panel showing the assigned advisor's name and a chat CTA. * * Two states: * - **Assigned** (`brokerName` provided): displays name, role, and a * "Chat with your advisor" button. * - **Unassigned** (no `brokerName`): displays a CTA to send a broker request. * * In both states the heading "Contact your advisor for a clear picture" is shown. */ type BrokerRole = "mortgage-broker" | "financial-planner"; interface BrokerInfoPanelProps { /** Assigned broker's full name. Omit to show the unassigned state. */ brokerName?: string; /** Role label shown next to the name. Defaults to "mortgage-broker". */ brokerRole?: BrokerRole; /** * Broker's contact phone number. * @deprecated Kept for API compatibility; no longer displayed. */ brokerPhone?: string; /** * Broker's contact email address. * @deprecated Kept for API compatibility; no longer displayed. */ brokerEmail?: string; /** Called when the user clicks "Chat with your advisor" (assigned state) */ onChat?: () => void; /** Called when the user clicks "Send Broker Request" (unassigned state only) */ onRequestBroker?: () => void; className?: string; } declare function BrokerInfoPanel({ brokerName, brokerRole, onChat, onRequestBroker, className, }: BrokerInfoPanelProps): react_jsx_runtime.JSX.Element; export { BrokerInfoPanel, type BrokerInfoPanelProps, type BrokerRole };