import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PushOptionChoice } from "./pushoptionchoice.js"; import { PushOptionType } from "./pushoptiontype.js"; import { PushValidationInfo } from "./pushvalidationinfo.js"; export type PushOptionProperty = { /** * The option type. */ type: PushOptionType; /** * The property's display name. */ displayName: string; /** * A description of the property. */ description: string; /** * The property is required if `True`. */ required: boolean; properties?: { [k: string]: PushOptionProperty; } | null | undefined; options?: Array | null | undefined; validation?: PushValidationInfo | undefined; }; /** @internal */ export declare const PushOptionProperty$inboundSchema: z.ZodType; export declare function pushOptionPropertyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pushoptionproperty.d.ts.map