import { z } from 'zod'; /** * Schema for Average True Range (ATR) calculation options */ export declare const ATROptionsSchema: z.ZodObject<{ high: z.ZodArray; low: z.ZodArray; close: z.ZodArray; period: z.ZodNumber; }, z.core.$strip>; export type ATROptions = z.infer;