import { Keyboard } from '@ephox/agar'; import { type SugarElement } from '@ephox/sugar'; import type { Editor } from '../../alien/EditorTypes'; declare const getUiRoot: (editor: Editor) => SugarElement; declare const clickOnToolbar: (editor: Editor, selector: string) => SugarElement; declare const tapOnToolbar: (editor: Editor, selector: string) => SugarElement; declare const clickOnMenu: (editor: Editor, selector: string) => SugarElement; declare const clickOnUi: (editor: Editor, selector: string) => SugarElement; declare const submitDialog: (editor: Editor, selector?: string) => void; declare const submitDialogByTitle: (editor: Editor, title: string) => void; declare const cancelDialog: (editor: Editor, selector?: string) => void; declare const closeDialog: (editor: Editor, selector?: string) => void; declare const closeDialogByTitle: (editor: Editor, title: string) => void; declare const pWaitForUi: (editor: Editor, selector: string) => Promise>; declare const pWaitForPopup: (editor: Editor, selector: string) => Promise>; declare const pWaitForDialog: (editor: Editor, selector?: string) => Promise>; declare const pWaitForDialogByTitle: (editor: Editor, title: string) => Promise>; declare const pTriggerContextMenu: (editor: Editor, target: string, menu: string) => Promise; declare const keydown: (editor: Editor, keyvalue: number, modifiers?: Keyboard.KeyModifiers) => void; declare const keyup: (editor: Editor, keyvalue: number, modifiers?: Keyboard.KeyModifiers) => void; declare const keypress: (editor: Editor, keyvalue: number, modifiers?: Keyboard.KeyModifiers) => void; declare const keystroke: (editor: Editor, keyvalue: number, modifiers?: Keyboard.KeyModifiers) => void; export { clickOnToolbar, clickOnMenu, clickOnUi, tapOnToolbar, submitDialog, submitDialogByTitle, cancelDialog, closeDialog, closeDialogByTitle, keydown, keypress, keystroke, keyup, pWaitForDialog, pWaitForDialogByTitle, pWaitForPopup, pWaitForUi, pTriggerContextMenu, getUiRoot }; //# sourceMappingURL=TinyUiActions.d.ts.map