import { default as React } from 'react'; import { ElementFocusEffect } from '../../utils'; export interface SliderHandleProps { ariaLabel?: string; ariaLabelledby?: string; disabled?: boolean; displayValue: string; focusEffects: ElementFocusEffect[]; focusVisible: boolean; handleRef: React.Ref; isFocused: boolean; max: number; min: number; onBlur: React.FocusEventHandler; onFocus: React.FocusEventHandler; onKeyDown: (e: React.KeyboardEvent) => void; onPointer: (e: React.PointerEvent, type: 'down' | 'move' | 'up') => void; orientation: 'horizontal' | 'vertical'; pct: number; readOnly?: boolean; showValue: 'always' | 'hover' | 'none'; value: number; } export declare const SliderHandle: ({ ariaLabel, ariaLabelledby, disabled, displayValue, focusEffects, focusVisible, handleRef, isFocused, max, min, onBlur, onFocus, onKeyDown, onPointer, orientation, pct, readOnly, showValue, value, }: SliderHandleProps) => import("react/jsx-runtime").JSX.Element;