import * as react_jsx_runtime from 'react/jsx-runtime'; /** * CopilotEmptyState — WealthX DS (Molecule) * * First-run / empty-thread welcome for the Copilot panel: a short greeting plus * optional suggested starter prompts the broker can tap to begin. Composes * Empty + Button. * * Pure display — host wires each prompt's onSelect. */ interface CopilotSuggestedPrompt { label: string; onSelect: () => void; } interface CopilotEmptyStateProps { title?: string; description?: string; /** Suggested starter prompts, rendered as tappable rows. */ prompts?: CopilotSuggestedPrompt[]; className?: string; } declare function CopilotEmptyState({ title, description, prompts, className, }: CopilotEmptyStateProps): react_jsx_runtime.JSX.Element; export { CopilotEmptyState, type CopilotEmptyStateProps, type CopilotSuggestedPrompt };