import * as react_jsx_runtime from 'react/jsx-runtime'; /** * CopilotAuthState — WealthX DS (Molecule) * * Whole-panel signed-out state for the Copilot extension. Shown when the broker * logs out of WealthX and the logout event is relayed to Copilot, so the * assistant clears its session and prompts a fresh sign-in. Composes * Empty + Button. * * Pure display — host wires onSignIn. */ interface CopilotAuthStateProps { title?: string; description?: string; /** Primary action to re-authenticate. */ onSignIn?: () => void; signInLabel?: string; className?: string; } declare function CopilotAuthState({ title, description, onSignIn, signInLabel, className, }: CopilotAuthStateProps): react_jsx_runtime.JSX.Element; export { CopilotAuthState, type CopilotAuthStateProps };