import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; export declare const OrderStatus: { readonly Active: "ACTIVE"; readonly Filled: "FILLED"; readonly Inactive: "INACTIVE"; readonly Cancelled: "CANCELLED"; }; export type OrderStatus = ClosedEnum; /** @internal */ export declare const OrderStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const OrderStatus$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace OrderStatus$ { /** @deprecated use `OrderStatus$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Active: "ACTIVE"; readonly Filled: "FILLED"; readonly Inactive: "INACTIVE"; readonly Cancelled: "CANCELLED"; }>; /** @deprecated use `OrderStatus$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Active: "ACTIVE"; readonly Filled: "FILLED"; readonly Inactive: "INACTIVE"; readonly Cancelled: "CANCELLED"; }>; } //# sourceMappingURL=orderstatus.d.ts.map