import { Service } from '../base/service'; export interface SelectionService extends Service { readonly isActive: boolean; readonly selectedText?: string; moveToEnd(): void; selectAll(): void; deselect(): void; } export declare const NULL_SELECTION_SERVICE: SelectionService;