import React from 'react'; import type { ILuckyWheelOptionalProps, IWheelText, TextAngleType } from '../../types'; import type { WheelSlicePayload } from './buildSlicePayload'; type WheelSvgProps = { size: number; sliceAngleCenter: number; slicePayload: WheelSlicePayload[]; sliceCount: number; sliceAngle: number; outerRadius: number; innerRadius: number; textAngle: TextAngleType; textStyle: ILuckyWheelOptionalProps['textStyle']; customText?: (params: IWheelText) => React.ReactNode; enableOuterDots: boolean; dotColor: ILuckyWheelOptionalProps['dotColor']; }; export declare function WheelSvg({ size, sliceAngleCenter, slicePayload, sliceCount, sliceAngle, outerRadius, innerRadius, textAngle, textStyle, customText, enableOuterDots, dotColor, }: WheelSvgProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=WheelSvg.d.ts.map