import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; export declare class TrackingStatus extends ClientSDK { /** * Register a tracking webhook * * @remarks * Registers a webhook that will send HTTP notifications to you when the status of your tracked package changes. For more details on creating a webhook, see our guides on Webhooks and Tracking. */ create(request: components.TracksRequest, options?: RequestOptions): Promise; /** * Get a tracking status * * @remarks * Returns the tracking status of a shipment using a carrier name and a tracking number. */ get(trackingNumber: string, carrier: string, options?: RequestOptions): Promise; } //# sourceMappingURL=trackingstatus.d.ts.map