import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PushControlDto = { /** * 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; /** * Subject/title of the push notification. */ subject?: string | undefined; /** * Body content of the push notification. */ body?: string | undefined; }; /** @internal */ export declare const PushControlDto$inboundSchema: z.ZodType; /** @internal */ export type PushControlDto$Outbound = { skip?: { [k: string]: any; } | undefined; subject?: string | undefined; body?: string | undefined; }; /** @internal */ export declare const PushControlDto$outboundSchema: z.ZodType; export declare function pushControlDtoToJSON(pushControlDto: PushControlDto): string; export declare function pushControlDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pushcontroldto.d.ts.map