SliderTooltip.d.ts 383 B

123456789
  1. import * as React from 'react';
  2. import type { SliderRef } from 'rc-slider/lib/Slider';
  3. import type { TooltipProps } from '../tooltip';
  4. export type SliderTooltipProps = TooltipProps & {
  5. draggingDelete?: boolean;
  6. value?: number;
  7. };
  8. declare const SliderTooltip: React.ForwardRefExoticComponent<SliderTooltipProps & React.RefAttributes<SliderRef>>;
  9. export default SliderTooltip;