/// import { CountryCode } from './images'; export interface Props { accessibilityLabel?: string; countryCode: CountryCode; size?: 'small' | 'default'; } export declare function FlagIcon({ accessibilityLabel, countryCode, size }: Props): JSX.Element;