import { z } from 'zod'; /** * Schema for Relative Strength Index (RSI) calculation result */ export declare const RSIResultSchema: z.ZodObject<{ rsi: z.ZodArray; priceChanges: z.ZodArray; gains: z.ZodArray; losses: z.ZodArray; averageGains: z.ZodArray; averageLosses: z.ZodArray; period: z.ZodNumber; count: z.ZodNumber; indices: z.ZodArray; }, z.core.$strip>; export type RSIResult = z.infer;