import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; export declare const Operation: { readonly Contains: "CONTAINS"; readonly StartsWith: "STARTS_WITH"; readonly Equals: "EQUALS"; }; export type Operation = ClosedEnum; export type ElementContentAssertion = { type?: "ELEMENT_CONTENT" | undefined; negated?: boolean | undefined; operation: Operation; value: string; }; /** @internal */ export declare const Operation$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Operation$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 Operation$ { /** @deprecated use `Operation$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Contains: "CONTAINS"; readonly StartsWith: "STARTS_WITH"; readonly Equals: "EQUALS"; }>; /** @deprecated use `Operation$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Contains: "CONTAINS"; readonly StartsWith: "STARTS_WITH"; readonly Equals: "EQUALS"; }>; } /** @internal */ export declare const ElementContentAssertion$inboundSchema: z.ZodType; /** @internal */ export type ElementContentAssertion$Outbound = { type: "ELEMENT_CONTENT"; negated?: boolean | undefined; operation: string; value: string; }; /** @internal */ export declare const ElementContentAssertion$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 ElementContentAssertion$ { /** @deprecated use `ElementContentAssertion$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ElementContentAssertion$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ElementContentAssertion$Outbound` instead. */ type Outbound = ElementContentAssertion$Outbound; } //# sourceMappingURL=elementcontentassertion.d.ts.map