import React, { ReactChild } from 'react'; import { IProps as IListViewProps } from './ListView'; interface IProps { children: (viewProps: IListViewProps) => ReactChild; } declare const ListController: React.FC; export default ListController;