import { CSSProperties } from 'react'; import { IPolicyCardProps } from '../policy-list/policy-card'; import './style'; interface ICardProps extends IPolicyCardProps { mobileSubTitle?: string; mobileTagOnClick?: (e?: any, cardInfo?: any) => void; mobileRedDot?: boolean; mobileTagRender?: (cardInfo?: IPolicyCardProps) => any; mobileExtraRender?: () => any; } interface IPolicyOrClaimMobileListProps { dataList: ICardProps[]; style?: CSSProperties; className?: string; } declare const MobileInsurerList: (props: IPolicyOrClaimMobileListProps) => import("react/jsx-runtime").JSX.Element; export default MobileInsurerList;