import { ReactNode } from 'react'; import { RaRecord } from '../../types'; import { ShowControllerProps, ShowControllerResult } from './useShowController'; /** * Render prop version of the useShowController hook * * @see useShowController * @example * * const ShowView = () =>
...
* const MyShow = () => ( * * {controllerProps => } * * ); */ export declare const ShowController: ({ children, ...props }: { children: (params: ShowControllerResult) => ReactNode; } & ShowControllerProps) => ReactNode; //# sourceMappingURL=ShowController.d.ts.map