import { z } from 'zod'; /** * Schema for Simple Moving Average (SMA) calculation options */ export declare const SMAOptionsSchema: z.ZodObject<{ prices: z.ZodArray; period: z.ZodNumber; }, z.core.$strip>; export type SMAOptions = z.infer;