import type { ContentModelEntity, EditorContext, IEditor } from 'roosterjs-content-model-types'; /** * Create an EditorContext for an entity * @param editor The editor object * @param entity The entity to create the context for * @returns The generated EditorContext for the entity */ export declare function createEditorContextForEntity(editor: IEditor, entity: ContentModelEntity): EditorContext;