UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

9 lines (8 loc) 363 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; }; declare const SliderTooltip: React.ForwardRefExoticComponent<SliderTooltipProps & React.RefAttributes<SliderRef>>; export default SliderTooltip;