import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateWebhookEndpointPayload = { name: string; url: string; partitionPattern?: string | null | undefined; }; /** @internal */ export declare const CreateWebhookEndpointPayload$inboundSchema: z.ZodType; /** @internal */ export type CreateWebhookEndpointPayload$Outbound = { name: string; url: string; partition_pattern?: string | null | undefined; }; /** @internal */ export declare const CreateWebhookEndpointPayload$outboundSchema: z.ZodType; export declare function createWebhookEndpointPayloadToJSON(createWebhookEndpointPayload: CreateWebhookEndpointPayload): string; export declare function createWebhookEndpointPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createwebhookendpointpayload.d.ts.map