///
import React from 'react';
import BasePropsType from './PropsType';
export interface SliderProps extends BasePropsType {
maximumTrackTintColor?: string;
minimumTrackTintColor?: string;
}
export default class SliderAntm extends React.Component {
static defaultProps: {
onChange(): void;
onAfterChange(): void;
defaultValue: number;
disabled: boolean;
maximumTrackTintColor: string;
minimumTrackTintColor: string;
};
render(): JSX.Element;
}