import { ReactNode } from 'react'; import { RaRecord } from '../../types'; import { ListControllerProps, ListControllerResult } from './useListController'; /** * Render prop version of the useListController hook. * * @see useListController * @example * * const ListView = () =>
...
; * const List = props => ( * * {controllerProps => } * * ) */ export declare const ListController: ({ children, ...props }: { children: (params: ListControllerResult) => ReactNode; } & ListControllerProps) => ReactNode; //# sourceMappingURL=ListController.d.ts.map