import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SmsControlDto = { /** * JSONLogic filter conditions for conditionally skipping the step execution. Supports complex logical operations with AND, OR, and comparison operators. See https://jsonlogic.com/ for full typing reference. */ skip?: { [k: string]: any; } | undefined; /** * Content of the SMS message. */ body?: string | undefined; }; /** @internal */ export declare const SmsControlDto$inboundSchema: z.ZodType; /** @internal */ export type SmsControlDto$Outbound = { skip?: { [k: string]: any; } | undefined; body?: string | undefined; }; /** @internal */ export declare const SmsControlDto$outboundSchema: z.ZodType; export declare function smsControlDtoToJSON(smsControlDto: SmsControlDto): string; export declare function smsControlDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=smscontroldto.d.ts.map