/// import { ListStyle } from './utils'; export declare type ListItemProps = { /** * @default true */ label?: boolean; /** * @default true */ decorator?: boolean; /** * @default true */ description?: boolean; /** * @default false */ caption?: boolean; compact?: boolean; tag?: 'div' | 'li'; } & ListStyle; /** * A copy of ListResultCard without all the props and logic, but with the markup and css-classes. * Some props are still needed to mimic the layout of the ListResultCard. * Used to show a skeleton of the ListResultCard when loading data. */ export declare const ListItemSkeleton: (props: ListItemProps) => JSX.Element;