import * as z from "zod"; export type Pixels = { x: number; y: number; }; export type CoordinatesTarget = { type?: "coordinates" | undefined; pixels: Pixels; }; /** @internal */ export declare const Pixels$inboundSchema: z.ZodType; /** @internal */ export type Pixels$Outbound = { x: number; y: number; }; /** @internal */ export declare const Pixels$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 Pixels$ { /** @deprecated use `Pixels$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Pixels$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Pixels$Outbound` instead. */ type Outbound = Pixels$Outbound; } /** @internal */ export declare const CoordinatesTarget$inboundSchema: z.ZodType; /** @internal */ export type CoordinatesTarget$Outbound = { type: "coordinates"; pixels: Pixels$Outbound; }; /** @internal */ export declare const CoordinatesTarget$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 CoordinatesTarget$ { /** @deprecated use `CoordinatesTarget$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CoordinatesTarget$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CoordinatesTarget$Outbound` instead. */ type Outbound = CoordinatesTarget$Outbound; } //# sourceMappingURL=coordinatestarget.d.ts.map