import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; export declare class Supply extends ClientSDK { /** * List commodities with supply models * * @remarks * Returns a list of all commodities that have supply models * available. Country codes follow the UN/LOCODE standard: * https://unece.org/trade/cefact/unlocode-code-list-country-and-territory */ listCommodities(options?: RequestOptions): Promise; /** * Get supply data for a commodity and country * * @remarks * Returns historical and forecasted supply data for a given * commodity and country. Country codes follow the UN/LOCODE standard: * https://unece.org/trade/cefact/unlocode-code-list-country-and-territory */ get(request: operations.GetSupplyRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=supply.d.ts.map