import * as React from "react"; interface SliderBaseContextProps { prefixCls: string; max: number; min: number; step: number; vertical: boolean; disabled: boolean; bg: string; trackBg: string; sliderSize: Function; sliderThumb: any; tooltipCustom: React.ReactNode; tipFormatter: React.ReactNode | null; style: React.CSSProperties; } export declare const SliderContext: React.Context>; export {};