import * as z from "zod"; import { CoordinatesTarget, CoordinatesTarget$Outbound } from "./coordinatestarget.js"; import { DescriptionTarget, DescriptionTarget$Outbound } from "./descriptiontarget.js"; export type ElementTarget = (CoordinatesTarget & { type: "coordinates"; }) | (DescriptionTarget & { type: "description"; }); /** @internal */ export declare const ElementTarget$inboundSchema: z.ZodType; /** @internal */ export type ElementTarget$Outbound = (CoordinatesTarget$Outbound & { type: "coordinates"; }) | (DescriptionTarget$Outbound & { type: "description"; }); /** @internal */ export declare const ElementTarget$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 ElementTarget$ { /** @deprecated use `ElementTarget$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ElementTarget$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ElementTarget$Outbound` instead. */ type Outbound = ElementTarget$Outbound; } //# sourceMappingURL=elementtarget.d.ts.map