UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

10 lines (9 loc) 383 B
import * as React from 'react'; import type { SliderRef } from 'rc-slider/lib/Slider'; import type { TooltipProps } from '../tooltip'; export type SliderTooltipProps = TooltipProps & { draggingDelete?: boolean; value?: number; }; declare const SliderTooltip: React.ForwardRefExoticComponent<SliderTooltipProps & React.RefAttributes<SliderRef>>; export default SliderTooltip;