import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WhatsAppWebhookSetupRequest = { appId: string; }; /** @internal */ export declare const WhatsAppWebhookSetupRequest$inboundSchema: z.ZodType; /** @internal */ export type WhatsAppWebhookSetupRequest$Outbound = { app_id: string; }; /** @internal */ export declare const WhatsAppWebhookSetupRequest$outboundSchema: z.ZodType; export declare function whatsAppWebhookSetupRequestToJSON(whatsAppWebhookSetupRequest: WhatsAppWebhookSetupRequest): string; export declare function whatsAppWebhookSetupRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=whatsappwebhooksetuprequest.d.ts.map