import { z } from 'zod'; /** * Schema for Stochastic Oscillator calculation result */ export declare const StochasticResultSchema: z.ZodObject<{ percentK: z.ZodArray; percentD: z.ZodArray; highestHigh: z.ZodArray; lowestLow: z.ZodArray; kPeriod: z.ZodNumber; dPeriod: z.ZodNumber; count: z.ZodNumber; indices: z.ZodArray; }, z.core.$strip>; export type StochasticResult = z.infer;