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