/// import { PointerProps, WheelData } from './types'; import { IBorderShadow } from '../WheelCanvas'; interface Props { mustStartSpinning: boolean; prizeNumber: number; data: WheelData[]; onStopSpinning?: () => any; backgroundColors?: string[]; textColors?: string[]; outerBorderColor?: string; outerBorderWidth?: number; innerRadius?: number; innerBorderColor?: string; innerBorderWidth?: number; radiusLineColor?: string; radiusLineWidth?: number; fontFamily?: string; fontSize?: number; perpendicularText?: boolean; textDistance?: number; spinDuration?: number; startingOptionIndex?: number; borderShadow?: IBorderShadow; pointerProps?: PointerProps; } export declare const Wheel: ({ mustStartSpinning, prizeNumber, data, onStopSpinning, backgroundColors, textColors, outerBorderColor, outerBorderWidth, innerRadius, innerBorderColor, innerBorderWidth, radiusLineColor, radiusLineWidth, fontFamily, fontSize, perpendicularText, textDistance, spinDuration, startingOptionIndex, borderShadow, pointerProps, }: Props) => JSX.Element | null; export {};