import { Bank, CountryHoliday } from ".."; import { Region } from "./Region"; export declare class Country { id: number; code: string; name: string; currency: string; prefix: string; structure_phone: string; legal_information: any | null; legal_agent: any | null; details: any | null; status: number; regions: Region[]; banks: Bank[]; country_holidays: CountryHoliday[]; }