import { State } from './State'; export interface Country { alpha2: string; alpha3: string; name: string; states: State[]; }