import * as React from 'react';
import tsPropsType from './PropsType';
export default class ListView extends React.Component<tsPropsType, any> {
static propTypes: {
dataSource: React.Requireable<any>;
};
static DataSource: any;
static IndexedList: any;
render(): JSX.Element;
}