import * as React from 'react'; import tsPropsType from './PropsType'; export default class IndexedList extends React.Component { static propTypes: { prefixCls: React.Requireable; }; static defaultProps: { prefixCls: string; }; render(): JSX.Element; }