import React, { ReactNode } from 'react'; declare const OrganizationCard: React.FC<{ title?: string; city?: string; area?: string; width?: string; logo?: any; showIcon?: boolean; trialComponent?: ReactNode; subTitle?: number | string | undefined; style?: React.CSSProperties; size: 'small' | 'large' | 'medium'; titleColor?: string | undefined; } & React.HTMLAttributes>; export default OrganizationCard;