import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The response from requesting a webhook subscription verification token. */ export type WebhookVerificationTokenResponse = { /** * A message indicating the verification token has been sent. */ message?: string | undefined; }; /** @internal */ export declare const WebhookVerificationTokenResponse$inboundSchema: z.ZodType; export declare function webhookVerificationTokenResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookverificationtokenresponse.d.ts.map