import { z } from 'zod'; /** * Schema for Stochastic Oscillator calculation options */ export declare const StochasticOptionsSchema: z.ZodObject<{ high: z.ZodArray; low: z.ZodArray; close: z.ZodArray; kPeriod: z.ZodDefault; dPeriod: z.ZodDefault; }, z.core.$strip>; export type StochasticOptions = z.input;