import { Record } from '../../types'; import { CreateControllerProps } from './useCreateController'; /** * Hook to read the create controller props from the CreateContext. * * Mostly used within a (e.g. as a descendent of ). * * But you can also use it without a . In this case, it is up to you * to pass all the necessary props. * * The given props will take precedence over context values. * * @typedef {Object} CreateControllerProps * * @returns {CreateControllerProps} create controller props * * @see useCreateController for how it is filled * */ export declare const useCreateContext: = Omit>(props?: Partial>) => Partial>;