import { z } from 'zod'; /** * Schema for Williams %R calculation result */ export declare const WilliamsRResultSchema: z.ZodObject<{ williamsR: z.ZodArray; highestHigh: z.ZodArray; lowestLow: z.ZodArray; period: z.ZodNumber; count: z.ZodNumber; indices: z.ZodArray; }, z.core.$strip>; export type WilliamsRResult = z.infer;