import { Keyboard } from '@ephox/agar'; import type { 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 pType: (editor: Editor, content: string, rate?: number) => Promise; 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, pType, trueClick, trueClickOn, pWaitForEventToStopFiring }; //# sourceMappingURL=TinyContentActions.d.ts.map