import { FC, HTMLAttributes } from 'react'; export interface Props extends HTMLAttributes { country?: string; role?: string; size?: number; alt?: string; } declare const Flag: FC; export default Flag;