import React, { FC, ComponentProps } from 'react'; import type { PropertyItemProps } from '../property/type'; export interface ListCardProps extends Omit, 'onClick'> { title?: string; statusText?: string; statusColor?: string; subTitle?: string; description?: string; descriptionLine?: number; icon?: string; iconBgColor?: string; footer?: React.ReactNode; footerAlign?: string; hasHoverShadow?: boolean; items?: Array; itemTitleWidth?: number; itemLineCount?: 'one' | 'two'; itemTitleAlign?: 'left' | 'center' | 'right'; currentCardData?: any; onClick?: (item: any, e: Event) => void; onTitleClick?: (item: any, e: Event) => void; } export declare const ListCard: FC; export default ListCard;