import { PureComponent } from 'react'; import { IProps } from './index.type'; export default class Curtain extends PureComponent { static defaultProps: { codes: {}; min: number; max: number; }; constructor(props: any); componentWillReceiveProps(nextProps: IProps): void; onControlChange: (control: any) => void; get valueCode(): string; get controlCode(): string; get defaultValue(): number; curtainRef: any; render(): JSX.Element; }