import type { PointerEvent, RefObject } from 'react'; import { type Point } from './AdvancedColorWheel.utils'; type AdvancedColorWheelLightnessProps = { disabled: boolean; fillPath: string; gradientId: string; inputId: string; lightness: number; lightnessRef: RefObject; onChange: (lightness: number) => void; onPointerCancel: (event: PointerEvent) => void; onPointerDown: (event: PointerEvent) => void; onPointerMove: (event: PointerEvent) => void; onPointerUp: (event: PointerEvent) => void; thumbPoint: Point; trackPath: string; }; declare const AdvancedColorWheelLightness: ({ disabled, fillPath, gradientId, inputId, lightness, lightnessRef, onChange, onPointerCancel, onPointerDown, onPointerMove, onPointerUp, thumbPoint, trackPath, }: AdvancedColorWheelLightnessProps) => import("react/jsx-runtime").JSX.Element; export { AdvancedColorWheelLightness };