import { ReactNode } from 'react'; import { CreateControllerProps, CreateControllerResult } from "./useCreateController.cjs"; import { RaRecord } from "../../types.cjs"; /** * Render prop version of the useCreateController hook * * @see useCreateController * @example * * const CreateView = () =>
...
* const MyCreate = props => ( * * {controllerProps => } * * ); */ export declare const CreateController: = any, MutationOptionsError = Error>({ children, ...props }: { children: (params: CreateControllerResult) => ReactNode; } & CreateControllerProps) => ReactNode; //# sourceMappingURL=CreateController.d.ts.map