import * as z from "zod"; export type PageContentAssertion = { type?: "CONTENT" | undefined; negated?: boolean | undefined; value: string; }; /** @internal */ export declare const PageContentAssertion$inboundSchema: z.ZodType; /** @internal */ export type PageContentAssertion$Outbound = { type: "CONTENT"; negated?: boolean | undefined; value: string; }; /** @internal */ export declare const PageContentAssertion$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 PageContentAssertion$ { /** @deprecated use `PageContentAssertion$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PageContentAssertion$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PageContentAssertion$Outbound` instead. */ type Outbound = PageContentAssertion$Outbound; } //# sourceMappingURL=pagecontentassertion.d.ts.map