import React from 'react'; import { A11yProps } from '../../_utils/interfaces'; import { Button } from '../../button/Button'; import { NormalizeProps } from '../../layout/layoutNormalizer'; import { TextDisplayType } from '../../text'; export declare enum ItemStatus { DEFAULT = "default", LOADING = "loading", CHECKED = "checked" } export declare type ItemProps = A11yProps & NormalizeProps & Readonly<{ chevron?: boolean; className?: string; href?: string | JSX.Element; highlighted?: boolean; isClickable?: boolean; hasClickableColorRules?: boolean; isWrappable?: boolean; leftTitle?: React.ReactNode; leftTitleButtonAddon?: React.ReactElement