import * as z from "zod"; import { A11yTargetWithCache, A11yTargetWithCache$Outbound } from "./a11ytargetwithcache.js"; export type DescriptionTarget = { type?: "description" | undefined; elementDescriptor: string; a11yData?: A11yTargetWithCache | undefined; }; /** @internal */ export declare const DescriptionTarget$inboundSchema: z.ZodType; /** @internal */ export type DescriptionTarget$Outbound = { type: "description"; elementDescriptor: string; a11yData?: A11yTargetWithCache$Outbound | undefined; }; /** @internal */ export declare const DescriptionTarget$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 DescriptionTarget$ { /** @deprecated use `DescriptionTarget$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DescriptionTarget$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DescriptionTarget$Outbound` instead. */ type Outbound = DescriptionTarget$Outbound; } //# sourceMappingURL=descriptiontarget.d.ts.map