import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Pagination, Pagination$Outbound } from "./pagination.js"; import { WebhookEndpoint, WebhookEndpoint$Outbound } from "./webhookendpoint.js"; export type WebhookEndpointList = { pagination: Pagination; webhookEndpoints: Array; }; /** @internal */ export declare const WebhookEndpointList$inboundSchema: z.ZodType; /** @internal */ export type WebhookEndpointList$Outbound = { pagination: Pagination$Outbound; webhook_endpoints: Array; }; /** @internal */ export declare const WebhookEndpointList$outboundSchema: z.ZodType; export declare function webhookEndpointListToJSON(webhookEndpointList: WebhookEndpointList): string; export declare function webhookEndpointListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookendpointlist.d.ts.map