import { ShippingZoneLocation, UpdateShippingZoneLocationRequestType } from './types'; import { AxiosInstance } from 'axios'; export default class ShippingZoneLocations { private readonly client; constructor(client: AxiosInstance); list(): Promise<{ data: ShippingZoneLocation[]; count: number; totalPages: number; }>; updateById({ shipping_zone_id, data, }: UpdateShippingZoneLocationRequestType): Promise; }