import { AgregatorDefineCityRO } from '@escapenavigator/types/dist/agregator/agregator-define-city.ro'; import { CountriesEnum } from '@escapenavigator/types/dist/shared/enum/countries.enum'; import { ApiMethodDeclaration } from '../..'; type ParamsData = { lat: number; lng: number; country?: CountriesEnum; }; type ResponseData = AgregatorDefineCityRO; export declare const defineCityByCoordinates: ApiMethodDeclaration; export {};