import * as z from "zod"; export type CodeLocation = { url: string; lineNumber: number; columnNumber: number; }; /** @internal */ export declare const CodeLocation$inboundSchema: z.ZodType; /** @internal */ export type CodeLocation$Outbound = { url: string; lineNumber: number; columnNumber: number; }; /** @internal */ export declare const CodeLocation$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 CodeLocation$ { /** @deprecated use `CodeLocation$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CodeLocation$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CodeLocation$Outbound` instead. */ type Outbound = CodeLocation$Outbound; } //# sourceMappingURL=codelocation.d.ts.map