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