import { CountryEnum } from '../enums/country.enum'; /** * Country information returned by the hoster.ai helper function. * Used to provide a list of all available countries. */ export declare class CountryDto { /** Country name */ name: string; /** Country code */ code: CountryEnum; /** Whether the country is in Europe */ isEurope?: boolean; }