/// interface PlaceInfoProps { children?: any; fontSize?: string; smFontSize?: string; color?: string; className?: string; iconClassName?: string; showIcon?: boolean; } export default function PlaceInfo({ children, fontSize, color, smFontSize, iconClassName, showIcon, }: PlaceInfoProps): JSX.Element; export {};