import * as React from 'react'; import { RaRecord } from 'ra-core'; import { ListProps } from './List'; /** * 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 'react-admin'; * * const App = () => ( * * * * ); */ export declare const ListGuesser: (props: Omit & { enableLog?: boolean; }) => React.JSX.Element; //# sourceMappingURL=ListGuesser.d.ts.map