import * as React from 'react'; import { FlexProps } from '../../layout'; import { ListCardItemVariant } from '../item/ListCardItem'; export interface ListCardSubItemProps extends FlexProps { readonly variantColor?: ListCardItemVariant; } declare const ListCardSubItem: React.FC; export default ListCardSubItem;