import { ShorthandItem } from '@appbuckets/react-ui-core'; import { UIMutableComponentProps } from '../generic'; import { LoaderProps } from '../Loader'; import { ItemHeaderProps } from './ItemHeader.types'; import { ItemMetaProps } from './ItemMeta.types'; export interface ItemContentProps extends UIMutableComponentProps {} export interface StrictItemContentProps { /** Item Content shorthand */ content?: ShorthandItem; /** Item Header shorthand */ header?: ShorthandItem; /** Show the Loader instead of main content */ loading?: boolean | LoaderProps; /** Item Meta shorthand */ meta?: ShorthandItem; }