import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Webhook } from "./webhook.js"; export type WebhookPaginatedList = { next?: string | undefined; previous?: string | undefined; count?: number | undefined; results?: Array | undefined; }; /** @internal */ export declare const WebhookPaginatedList$inboundSchema: z.ZodMiniType; export declare function webhookPaginatedListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookpaginatedlist.d.ts.map