import * as z from "zod"; export type EngineReferenceV2 = { /** * If true, the reference can refer to 0 to many items */ array: boolean; /** * The key of the field this is a reference to */ key: string; /** * Human readable label for the field (with context) */ label: string; /** * The type of this resource in the engine */ type: string; }; /** @internal */ export declare const EngineReferenceV2$inboundSchema: z.ZodType; /** @internal */ export type EngineReferenceV2$Outbound = { array: boolean; key: string; label: string; type: string; }; /** @internal */ export declare const EngineReferenceV2$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 EngineReferenceV2$ { /** @deprecated use `EngineReferenceV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EngineReferenceV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EngineReferenceV2$Outbound` instead. */ type Outbound = EngineReferenceV2$Outbound; } //# sourceMappingURL=enginereferencev2.d.ts.map