import type { PlanCardData } from '../hooks/usePlanUpdates'; interface PlanCardProps { plan: PlanCardData; sendChatMessage: (message: string) => Promise; onDismiss: () => void; } export declare const APPROVE_MESSAGE = "Yes, go ahead."; export declare const CANCEL_MESSAGE = "No, cancel that."; export declare const COMPLETED_CARD_VISIBLE_MS = 2500; export declare function PlanCard({ plan, sendChatMessage, onDismiss }: PlanCardProps): import("react/jsx-runtime").JSX.Element; export {};