import { Keyboard } from '@ephox/agar'; import { SugarElement } from '@ephox/sugar'; import { 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 cancelDialog: (editor: Editor, selector?: string) => void; declare const closeDialog: (editor: Editor, selector?: 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 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, cancelDialog, closeDialog, keydown, keypress, keystroke, keyup, pWaitForDialog, pWaitForPopup, pWaitForUi, pTriggerContextMenu, getUiRoot }; //# sourceMappingURL=TinyUiActions.d.ts.map