import { HTMLAttributes } from 'react';
import { CountryCode } from './types';
interface FlagProps extends Omit, "width" | "height"> {
/**
* ISO 3166-1 alpha-2 country code (e.g. 'US', 'GB', 'FR')
*/
countryCode: CountryCode;
/**
* Width and height in pixels for the flag SVG. Defaults to 40px if not specified.
*/
size?: number;
}
export declare const Flag: import('react').ForwardRefExoticComponent>;
export default Flag;