UNPKG

435 BTypeScriptView Raw
1import * as React from 'react';
2import { RangePropsType } from './PropsType';
3export interface RangeProps extends RangePropsType {
4 prefixCls?: string;
5 handleStyle?: React.CSSProperties[];
6 trackStyle?: React.CSSProperties[];
7 railStyle?: React.CSSProperties;
8}
9export default class Range extends React.Component<RangeProps, any> {
10 static defaultProps: {
11 prefixCls: string;
12 };
13 render(): JSX.Element;
14}