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