import type { GetAvailableShippingZonesQueryParams } from "../../../storefront-api/src/__api/queries/getAvailableShippingZones"; import type { ListCityQueryParams } from "../../../storefront-api/src/__api/queries/listCity"; import type { ListCountryQueryParams } from "../../../storefront-api/src/__api/queries/listCountry"; import type { ListDistrictQueryParams } from "../../../storefront-api/src/__api/queries/listDistrict"; import type { ListStateQueryParams } from "../../../storefront-api/src/__api/queries/listState"; import { APIResponse } from "../../../storefront-api-client/src"; import { IkasCity, IkasCountry, IkasDistrict, IkasShippingZone, IkasState } from "../../../storefront-models/src"; export declare function apiGetMyCountry(): Promise | APIResponse>; export declare function apiListCountry(params: ListCountryQueryParams): Promise>; export declare function apiListCity(params: ListCityQueryParams): Promise>; export declare function apiListDistrict(params: ListDistrictQueryParams): Promise>; export declare function apiListState(params: ListStateQueryParams): Promise>; export declare function apiGetAvailableShippingZones(params: GetAvailableShippingZonesQueryParams): Promise>;