import type { InlineSelection, UIActionTypes } from './types'; import type { AppThunk } from '../types'; export declare function updateSelectView(viewId: string | null): AppThunk; export declare const selectEditorView: typeof updateSelectView; export declare function focusEditorView(viewId: string | null, focused: boolean): AppThunk; export declare function focusSelectedEditorView(focused: boolean): AppThunk; export declare function setInlineSelection(selection: InlineSelection | null): UIActionTypes; export declare function positionInlineActions(): AppThunk;