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