import type { CreateType } from './type'; export declare const useSurchargeApi: () => { browse(): Promise<{ value?: any; rule?: any; _id: string; name: string; businessId: string; applyTo: "purchaseOrder"; }[]>; create(surcharge: CreateType): Promise; read(id: string): Promise; update(id: string, surcharge: FdoInventorySurcharge): Promise; delete(id: string): Promise<{ value?: any; rule?: any; _id: string; name: string; businessId: string; applyTo: "purchaseOrder"; }>; urls: { portalBackendUrl: string; netSuiteBackendUrl: string; businessesBackendUrl: string; inventoryBackendUrl: string; foodMarketHubUrl: string; menuV4BackendUrl: string; dataBackendUrl: string; }; };