import type { Color, ILuckyWheel, ILuckyWheelOptionalProps } from '../../types'; export type WheelSlicePayload = { path: string | null; color: Color; text: string; textStyle?: ILuckyWheel['slices'][number]['textStyle']; centroid: [number, number]; }; type BuildArgs = { slices: ILuckyWheel['slices']; padAngle: number; outerRadius: number; innerRadius: number; backgroundColorOptions: ILuckyWheelOptionalProps['backgroundColorOptions']; }; export declare function buildSlicePayload({ slices, padAngle, outerRadius, innerRadius, backgroundColorOptions, }: BuildArgs): WheelSlicePayload[]; export {}; //# sourceMappingURL=buildSlicePayload.d.ts.map