export interface SubItemProps { /** * Additional info components like StatusBadge, Button, Link or Text. */ children?: React.ReactNode; /** * Custom class name. */ className?: string; isSelected?: boolean; state?: 'default' | 'completed' | 'error' | 'disabled' | 'informative'; hasIcon?: boolean; title: string | React.ReactNode; href?: string; onClick?: () => void; as?: 'a' | 'button'; } export declare const SubItem: ({ children, className, state, isSelected, hasIcon, title, href, as, onClick, }: SubItemProps) => JSX.Element;