import * as React from 'react'; import type { HasDataAttribute, HasRootRef } from '../../../types'; interface SliderThumbProps extends HasRootRef, HasDataAttribute { className?: string | undefined; style?: React.CSSProperties | undefined; inputProps?: (React.InputHTMLAttributes & React.RefAttributes & HasDataAttribute) | undefined; withTooltip?: boolean | undefined; isActive?: boolean | undefined; } export declare const SliderThumb: ({ className, getRootRef, inputProps, withTooltip, isActive, ...restProps }: SliderThumbProps) => React.ReactNode; export {}; //# sourceMappingURL=SliderThumb.d.ts.map