import type { PlanCardData } from '../hooks/usePlanUpdates'; interface VoiceBarPlanCardProps { plan: PlanCardData; sendChatMessage: (message: string) => Promise; onDismiss: () => void; embedded?: boolean; } export declare function VoiceBarPlanCard({ plan, sendChatMessage, onDismiss, embedded, }: VoiceBarPlanCardProps): import("react/jsx-runtime").JSX.Element; export {};