import type { FC } from 'react'; import { type CountryCode } from '../Country'; export interface IpCountryProps { code: CountryCode; } export declare const IpCountry: FC;