export interface WorkspaceChoice { id: string; title: string; description: string; icon: React.ReactNode; color: string; gradient: string; url?: string; onClick?: () => void; } export interface LandingMenuProps { /** * Custom class name for the landing menu container */ className?: string; /** * Welcome title text */ welcomeTitle?: string; /** * Welcome subtitle text */ welcomeSubtitle?: string; /** * Logo source URL */ logoSrc?: string; /** * Logo alt text */ logoAlt?: string; /** * Workspace choice options */ workspaceChoices?: WorkspaceChoice[]; } export declare function LandingMenu({ className, welcomeTitle, welcomeSubtitle, logoSrc, logoAlt, workspaceChoices }: LandingMenuProps): import("react/jsx-runtime").JSX.Element;