import { z } from 'zod'; /** * Schema for Average True Range (ATR) calculation result */ export declare const ATRResultSchema: z.ZodObject<{ trueRange: z.ZodArray; atr: z.ZodArray; period: z.ZodNumber; count: z.ZodNumber; indices: z.ZodArray; }, z.core.$strip>; export type ATRResult = z.infer;