import { z } from "zod"; export declare const getOrdersOptions: z.ZodObject<{ from: z.ZodOptional; to: z.ZodOptional; securityTicker: z.ZodOptional; operation: z.ZodOptional>; runId: z.ZodOptional; }, "strip", z.ZodTypeAny, { from?: Date | undefined; to?: Date | undefined; securityTicker?: string | undefined; operation?: "limit_buy" | "limit_sell" | "market_buy" | "market_sell" | "buy_or_cancel" | "sell_or_cancel" | "undefined" | undefined; runId?: number | undefined; }, { from?: Date | undefined; to?: Date | undefined; securityTicker?: string | undefined; operation?: "limit_buy" | "limit_sell" | "market_buy" | "market_sell" | "buy_or_cancel" | "sell_or_cancel" | "undefined" | undefined; runId?: number | undefined; }>; export declare type GetOrdersOptions = z.infer;