/// import { ListProps } from '../types'; /** * List component rendering a based on the result of the * dataProvider.getList() call. * * The result (choice and type of columns) isn't configurable, but the * outputs the it has guessed to the console so that * developers can start from there. * * To be used as the list prop of a . * * @example * * import { Admin, Resource, ListGuesser } from '../../app'; * * const App = () => ( * * * * ); */ declare const ListGuesser: ({ children, ...props }: ListProps) => JSX.Element; export default ListGuesser;