import { Component } from 'react'; import { RangeProps as NextRangeProps } from '@alifd/next/types/range'; interface RangeProps extends NextRangeProps { size?: 'large' | 'medium' | 'small'; } declare class Range extends Component { render(): JSX.Element; } declare const _default: typeof Range; export default _default;