import { Block, Editor } from 'slate'; export declare class ComponentStore { resizeDisableMap: Map; resizeDisableEmitterMap: Map void)[]>; anchorCellBlock: Block | null; focusCellBlock: Block | null; isCellSelecting: boolean; subscribeDisableResizing: (editor: Editor, f: (v: boolean) => void) => void; setDisableResizing: (editor: Editor, v: boolean) => void; setAnchorCellBlock: (b: Block | null) => Block | null; getAnchorCellBlock: () => Block | null; setFocusCellBlock: (b: Block | null) => Block | null; getFocusCellBlock: () => Block | null; setCellSelecting: (editor: Editor) => void; clearCellSelecting: (editor: Editor) => void; getCellSelecting: () => boolean; dispose: () => void; }