import { IState } from './states'; export interface ICountry { pk: number; id: number; name: string; to_string: string; phone_code: string; currency: string; iso2: string; iso3: string; states: IState[]; }