/// import { WheelData } from '../Wheel/types'; interface WheelCanvasProps extends DrawWheelProps { width: string; height: string; data: WheelData[]; } export interface IBorderShadow { shadowWidth?: number; shadowColor?: string; } interface DrawWheelProps { outerBorderColor: string; outerBorderWidth: number; innerRadius: number; innerBorderColor: string; innerBorderWidth: number; radiusLineColor: string; radiusLineWidth: number; fontFamily: string; fontSize: number; perpendicularText: boolean; prizeMap: number[][]; rouletteUpdater: boolean; textDistance: number; borderShadow: IBorderShadow; } declare const WheelCanvas: ({ width, height, data, outerBorderColor, outerBorderWidth, innerRadius, innerBorderColor, innerBorderWidth, radiusLineColor, radiusLineWidth, fontFamily, fontSize, perpendicularText, prizeMap, rouletteUpdater, textDistance, borderShadow, }: WheelCanvasProps) => JSX.Element; export default WheelCanvas;