import type { PluginWithState, SelectionPluginState, EditorOptions } from 'roosterjs-content-model-types'; /** * @internal */ export declare const DEFAULT_SELECTION_BORDER_COLOR = "#DB626C"; /** * @internal */ export declare const DEFAULT_TABLE_CELL_SELECTION_BACKGROUND_COLOR = "#C6C6C6"; /** * @internal * Create a new instance of SelectionPlugin. * @param option The editor option */ export declare function createSelectionPlugin(options: EditorOptions): PluginWithState;