import * as z from "zod"; export type ReturnsMetaV2 = { /** * Whether the return value should be single or multi-value */ array: boolean; /** * Expected return type of this expression (what to try casting the result to) */ type: string; }; /** @internal */ export declare const ReturnsMetaV2$inboundSchema: z.ZodType; /** @internal */ export type ReturnsMetaV2$Outbound = { array: boolean; type: string; }; /** @internal */ export declare const ReturnsMetaV2$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 ReturnsMetaV2$ { /** @deprecated use `ReturnsMetaV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ReturnsMetaV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ReturnsMetaV2$Outbound` instead. */ type Outbound = ReturnsMetaV2$Outbound; } //# sourceMappingURL=returnsmetav2.d.ts.map