import * as React from 'react'; import { FlexProps } from '../../layout'; import ListCardItemLabel from './ListCardItemLabel'; import ListCardItemType from './ListCardItemType'; export type ListCardItemVariant = 'default' | 'hierarchy'; export interface ListCardItemProps extends FlexProps { readonly htmlFor?: string; readonly draggable?: boolean; readonly variantColor?: ListCardItemVariant; } type SubComponents = { Label: typeof ListCardItemLabel; Type: typeof ListCardItemType; }; declare const ListCardItem: React.FC & SubComponents; export default ListCardItem;