import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ConfigurationsDto = { inboundWebhookEnabled?: boolean | undefined; inboundWebhookSigningKey?: string | undefined; }; /** @internal */ export declare const ConfigurationsDto$inboundSchema: z.ZodType; export declare function configurationsDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=configurationsdto.d.ts.map