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"; /** * Update an existing webhook * * @remarks * Updates an existing webhook using the webhook object ID. */ export declare function webhooksUpdateWebhook(client: ShippoCore, webhookUpdateRequest: components.WebhookUpdateRequest, webhookId: string, options?: RequestOptions): APIPromise>; //# sourceMappingURL=webhooksUpdateWebhook.d.ts.map