export default function createSlider(Component: any): import("vue").DefineComponent<{ id: StringConstructor; min: NumberConstructor; max: NumberConstructor; step: NumberConstructor; marks: any; included: { type: BooleanConstructor; default: any; }; prefixCls: StringConstructor; disabled: { type: BooleanConstructor; default: any; }; handle: FunctionConstructor; dots: { type: BooleanConstructor; default: any; }; vertical: { type: BooleanConstructor; default: any; }; reverse: { type: BooleanConstructor; default: any; }; minimumTrackStyle: any; maximumTrackStyle: any; handleStyle: any; trackStyle: any; railStyle: any; dotStyle: any; activeDotStyle: any; autofocus: { type: BooleanConstructor; default: any; }; draggableTrack: { type: BooleanConstructor; default: any; }; }, unknown, {}, {}, { defaultHandle({ index, directives, className, style, ...restProps }: { [x: string]: any; index: any; directives: any; className: any; style: any; }): import("vue/jsx-runtime").JSX.Element; onDown(e: any, position: any): void; onMouseDown(e: any): void; onTouchStart(e: any): void; onFocus(e: any): void; onBlur(e: any): void; onMouseUp(): void; onMouseMove(e: any): void; onTouchMove(e: any): void; onKeyDown(e: any): void; onClickMarkLabel(e: any, value: any): void; getSliderStart(): any; getSliderLength(): any; addDocumentTouchEvents(): void; addDocumentMouseEvents(): void; removeDocumentEvents(): void; focus(): void; blur(): void; calcValue(offset: any): number; calcValueByPos(position: any): any; calcOffset(value: any): number; saveSlider(slider: any): void; saveHandle(index: any, handle: any): void; }, any, import("vue").ComponentOptionsMixin, ("blur" | "change" | "focus")[], "blur" | "change" | "focus", import("vue").PublicProps, Readonly> & { onFocus?: (...args: any[]) => any; onBlur?: (...args: any[]) => any; onChange?: (...args: any[]) => any; }, { reverse: boolean; disabled: boolean; vertical: boolean; autofocus: boolean; trackStyle: any; dots: boolean; marks: any; included: boolean; dotStyle: any; activeDotStyle: any; minimumTrackStyle: any; handleStyle: any; railStyle: any; maximumTrackStyle: any; draggableTrack: boolean; }, {}>;