import * as react_jsx_runtime from 'react/jsx-runtime'; /** * CopilotSuggestionCard — WealthX DS (Molecule) * * A proactive suggestion the Copilot surfaces with a primary call-to-action * that deep-links into the Backoffice (e.g. "Jordan is ready for pre-approval * → Open in Backoffice"), plus an optional dismiss. Composes Card + Button. * * Pure display — host wires onAction (navigation) and onDismiss. */ interface CopilotSuggestionCardProps { /** The suggestion headline. */ title: string; /** Optional supporting detail. */ description?: string; /** Primary action — typically a deep-link into the Backoffice. */ onAction?: () => void; actionLabel?: string; /** Optional secondary dismiss action. */ onDismiss?: () => void; dismissLabel?: string; className?: string; } declare function CopilotSuggestionCard({ title, description, onAction, actionLabel, onDismiss, dismissLabel, className, }: CopilotSuggestionCardProps): react_jsx_runtime.JSX.Element; export { CopilotSuggestionCard, type CopilotSuggestionCardProps };