import { Base } from '../base'; import { CountriesType, ServicesType, PricesByCountries, PricesByServices, ServicePriceType, CountryPriceType, PricesCount } from '../../types/catalog'; export declare class Catalog extends Base { getCountries(): Promise; getServices(): Promise; getPricesByCountries(): Promise; getPricesByServices(): Promise; getPricesInOneCountry(countryId: string): Promise; getPricesForOneService(serviceId: number): Promise; getPricesForServiceInOneCountry(serviceId: number, countryId: string): Promise; }