import { WeightedGameConfiguration } from "@betswirl/sdk-core"; /** * Hook to calculate unique multipliers for the Wheel game using SDK's getUniqueOutputs * This should be used by parent components to prepare data for WheelGameControls * * @param config - The weighted game configuration * @param houseEdge - The house edge in basis points (e.g., 100 = 1%) * @returns Array of unique multipliers formatted for UI display * * @example * ```tsx * const uniqueMultipliers = useWheelMultipliers(wheelConfig, houseEdge) * * * ``` */ export declare function useWheelMultipliers(config: WeightedGameConfiguration | undefined, houseEdge: number): { multiplier: number; formattedMultiplier: string; color: string; }[];