import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; export declare const Condition: { readonly Exists: "EXISTS"; readonly Visible: "VISIBLE"; readonly Enabled: "ENABLED"; readonly Editable: "EDITABLE"; }; export type Condition = ClosedEnum; export type ElementExistenceAssertion = { type?: "ELEMENT_EXISTENCE" | undefined; negated?: boolean | undefined; condition: Condition; }; /** @internal */ export declare const Condition$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Condition$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Condition$ { /** @deprecated use `Condition$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Exists: "EXISTS"; readonly Visible: "VISIBLE"; readonly Enabled: "ENABLED"; readonly Editable: "EDITABLE"; }>; /** @deprecated use `Condition$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Exists: "EXISTS"; readonly Visible: "VISIBLE"; readonly Enabled: "ENABLED"; readonly Editable: "EDITABLE"; }>; } /** @internal */ export declare const ElementExistenceAssertion$inboundSchema: z.ZodType; /** @internal */ export type ElementExistenceAssertion$Outbound = { type: "ELEMENT_EXISTENCE"; negated?: boolean | undefined; condition: string; }; /** @internal */ export declare const ElementExistenceAssertion$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ElementExistenceAssertion$ { /** @deprecated use `ElementExistenceAssertion$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ElementExistenceAssertion$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ElementExistenceAssertion$Outbound` instead. */ type Outbound = ElementExistenceAssertion$Outbound; } //# sourceMappingURL=elementexistenceassertion.d.ts.map