import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeleteWebhookEndpointRequest = { endpointId: string; }; /** @internal */ export declare const DeleteWebhookEndpointRequest$inboundSchema: z.ZodType; /** @internal */ export type DeleteWebhookEndpointRequest$Outbound = { endpoint_id: string; }; /** @internal */ export declare const DeleteWebhookEndpointRequest$outboundSchema: z.ZodType; export declare function deleteWebhookEndpointRequestToJSON(deleteWebhookEndpointRequest: DeleteWebhookEndpointRequest): string; export declare function deleteWebhookEndpointRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deletewebhookendpoint.d.ts.map