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