import { ICountryName, ICountryThreeCode, ICountryTwoCode, ICurrency } from '../../..'; export interface ICountry { name: ICountryName; twoCode: ICountryTwoCode; threeCode: ICountryThreeCode; currency: ICurrency; } export declare const isICountry: (t: any) => t is ICountry;