antd
Version:
An enterprise-class UI design language and React components implementation
10 lines (9 loc) • 432 B
TypeScript
import type { SliderProps as RcSliderProps } from 'rc-slider';
import type { DirectionType } from '../config-provider';
export interface SliderInternalContextProps {
handleRender?: RcSliderProps['handleRender'];
direction?: DirectionType;
}
/** @private Internal context. Do not use in your production. */
declare const SliderInternalContext: React.Context<SliderInternalContextProps>;
export default SliderInternalContext;