import { ShippingMethod, ShippingMethodByIdRequestType } from './types'; import { AxiosInstance } from 'axios'; export default class ShippingMethods { private readonly client; constructor(client: AxiosInstance); getById({ id, }: ShippingMethodByIdRequestType): Promise; list(): Promise<{ data: ShippingMethod[]; count: number; totalPages: number; }>; }