import React from "react"; import type { Dispatch, SetStateAction } from "react"; interface SegmentProps { label: string; color: string; outcome: "WIN" | "LOSE"; winHeading?: string; winValue?: number; probability?: number; } export interface WheelProps { segments: SegmentProps[]; setWinningSegment: Dispatch>; ctaButtonText?: string; brandThemeColor?: string | undefined; brandGameDefaultThemeColor?: string | undefined; wheelSectionColor1?: string | undefined; wheelSectionColor2?: string | undefined; wheelCenterLogo?: string | undefined; isStatic?: boolean | undefined; } declare const SpinnerWheel: React.FC; export default SpinnerWheel;