import React, { CSSProperties } from 'react'; interface BaseSliderPropsType { step: any; showLabel: any; labelPlacement: any; range: boolean | undefined; disabled?: boolean | undefined; direction: any; options: any; className: any; minIcon: any; maxIcon: any; max: any; min: any; style: CSSProperties; showInput: any; getEngineApis?: any; value?: any; onChange?: (value: any) => void; onMouseEnter: any; onMouseLeave: any; onClick: any; } export interface MySliderProps extends Omit { defaultValue: any; showMarks: any; marks: any; stepNull: any; included: any; labelPlacement: any; draggableTrack: any; readOnly: any; required: any; visible: any; showWrapperContainer?: any; selfSpan?: any; colSpan?: any; label?: any; titleTip?: any; tipIcon?: any; tipLocation?: any; tipContent?: any; tipPlacement?: any; regexp?: any; message?: any; hidden?: any; compId?: any; labelCol?: any; wrapperCol?: any; colon?: any; fieldName?: any; onValueRelease?: any; getCompPropMapState?: any; wrapperContainer?: any; isFormChild?: boolean | undefined; tipSize?: string; tipWidth?: string; tipHeight?: string; getEngineApis?: any; } declare const Slider: React.ForwardRefExoticComponent>; export default Slider;