import { KAResponse } from '../../types/api-response'; import { InstantService } from '../../types/courier'; export type PricingInstantPayload = { /** * @description Use string for custom courier codes that not provided in InstantService enum */ service: (InstantService | string)[]; item_price: number; origin: { lat: number; long: number; address: string; }; destination: { lat: number; long: number; address: string; }; weight: number; vehicle: "motor" | "mobil"; timezone: string; }; export declare const getPricingInstant: (payload: PricingInstantPayload) => Promise>;