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