import type { RefObject } from 'react'; import type { AdvancedColorWheelColor, AdvancedColorWheelHarmony } from './AdvancedColorWheel.utils'; type AdvancedColorWheelReadoutProps = { colors: AdvancedColorWheelColor[]; mode: AdvancedColorWheelHarmony; readoutRef: RefObject; title: string; }; declare const AdvancedColorWheelReadout: ({ colors, mode, readoutRef, title, }: AdvancedColorWheelReadoutProps) => import("react/jsx-runtime").JSX.Element; export { AdvancedColorWheelReadout };