import React from 'react'; import { Icon } from '../_utils/icon'; import { A11yProps } from '../_utils/interfaces'; declare type Option = Readonly<{ icon: React.ReactElement; label: string; }>; export declare type ProfileLeftProps = A11yProps & Readonly<{ className?: string; pictureUrl: string; displayName: string; isIdChecked?: boolean; additionalInfo?: string; averageRating?: string; options?: ReadonlyArray