export interface Country { id: number; name: string; code: string; hasState: boolean; } export interface Region { code: string; name: string; }