import { z } from 'zod'; /** * Schema for Williams %R calculation options */ export declare const WilliamsROptionsSchema: z.ZodObject<{ high: z.ZodArray; low: z.ZodArray; close: z.ZodArray; period: z.ZodDefault; }, z.core.$strip>; export type WilliamsROptions = z.infer;