import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The secret used to verify webhook payloads. */ export type WebhookSecret = { /** * The secret key used to sign webhook payloads. Use this to verify the authenticity of incoming webhooks. */ secret: string; }; /** @internal */ export declare const WebhookSecret$inboundSchema: z.ZodType; /** @internal */ export type WebhookSecret$Outbound = { secret: string; }; /** @internal */ export declare const WebhookSecret$outboundSchema: z.ZodType; export declare function webhookSecretToJSON(webhookSecret: WebhookSecret): string; export declare function webhookSecretFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhooksecret.d.ts.map