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"; /** * 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. */ export declare function trackingStatusCreate(client: ShippoCore, request: components.TracksRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=trackingStatusCreate.d.ts.map