///
import { IBaseEntity } from "../types/baseEntity";
export type sharedContextState = {
isValid: boolean;
item: IBaseEntity;
};
export declare const EditorContextProvider: (props: {
children: import("react").ReactNode;
}) => import("react").FunctionComponentElement> | undefined>>, useEditorContext: () => sharedContextState, useSetEditorContext: (() => (value: import("react").SetStateAction) => void) | (() => import("react").Dispatch>);