import { Language, Country, Operator } from "../interfaces/types"; import { ProductsResponse, PricesResponse, CountriesResponse, NotificationResponse } from "../interfaces/responses"; export declare class GuestService { private static readonly baseURL; /** * Get available products for a specific country and operator */ static getProducts(country: Country, operator: Operator): Promise; /** * Get all prices */ static getPrices(): Promise; /** * Get prices for a specific country */ static getPricesByCountry(country: Country): Promise; /** * Get prices for a specific product */ static getPricesByProduct(product: string): Promise; /** * Get prices for a specific country and product combination */ static getPricesByCountryAndProduct(country: Country, product: string): Promise; /** * Get notifications in specified language */ static getNotifications(lang: Language): Promise; /** * Get list of available countries */ static getCountries(): Promise; }