import { Keyboard } from '@ephox/agar'; import { Editor } from '../../alien/EditorTypes'; 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; declare const type: (editor: Editor, content: string) => void; declare const trueClick: (editor: Editor) => void; declare const trueClickOn: (editor: Editor, selector: string) => void; declare const pWaitForEventToStopFiring: (editor: Editor, eventName: string, timing: { delay: number; timeout: number; }) => Promise; export { keydown, keypress, keystroke, keyup, type, trueClick, trueClickOn, pWaitForEventToStopFiring }; //# sourceMappingURL=TinyContentActions.d.ts.map