import { ContinentEnum } from './ContinentEnum';
import { CountryEnum } from './CountryEnum';
import { Ip } from '../../Ip';
/** Representation of country and continent from visitor IP */
export interface ContinentCountryLocation {
    /** Continent */
    continent?: ContinentEnum;
    /** Country iso code */
    countryCode?: CountryEnum;
    /** The IP address processed, the user's origin one */
    ip: Ip;
}
//# sourceMappingURL=ContinentCountryLocation.d.ts.map