import { z } from 'zod'; /** * Schema for Relative Strength Index (RSI) calculation options */ export declare const RSIOptionsSchema: z.ZodObject<{ prices: z.ZodArray; period: z.ZodNumber; }, z.core.$strip>; export type RSIOptions = z.infer;