import type { ReactElement } from 'react'; import type { ListItemProps, ListItemWithWidgetProps } from '../listItem/interface'; import type { AccessibilityPropsType } from '../../../utils/accessibility-helper'; declare type ListCardChild = ReactElement | ReactElement; export interface ListCardProps extends AccessibilityPropsType { title: string; titleSize?: 'small' | 'medium' | 'large'; footer?: string; children?: ListCardChild | ListCardChild[]; onPress?: () => void; customRender?: ReactElement; } export {};