import { ShippoCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { ShippoError } from "../models/errors/shippoerror.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Get a tracking status * * @remarks * Returns the tracking status of a shipment using a carrier name and a tracking number. */ export declare function trackingStatusGet(client: ShippoCore, trackingNumber: string, carrier: string, options?: RequestOptions): APIPromise>; //# sourceMappingURL=trackingStatusGet.d.ts.map