import { Record } from '../../types'; import { EditControllerProps } from './useEditController'; /** * Hook to read the edit 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} EditControllerProps * * @returns {EditControllerProps} edit controller props * * @see useEditController for how it is filled * */ export declare const useEditContext: (props?: Partial>) => Partial>;