import { ActionSequence, KeyAction, KeyActionSequence, NullActionSequence, PointerActionSequence, PointerMoveAction, ScrollAction, WheelActionSequence } from '@appium/types'; import { NovaWindowsDriver } from '../driver'; export declare function performActions(this: NovaWindowsDriver, actionSequences: ActionSequence[]): Promise; export declare function handleKeyActionSequence(this: NovaWindowsDriver, actionSequence: KeyActionSequence): Promise; export declare function handlePointerActionSequence(this: NovaWindowsDriver, actionSequence: PointerActionSequence): Promise; export declare function handleMousePointerActionSequence(this: NovaWindowsDriver, actionSequence: PointerActionSequence): Promise; export declare function handleWheelActionSequence(this: NovaWindowsDriver, actionSequence: WheelActionSequence): Promise; export declare function handleNullActionSequence(this: NovaWindowsDriver, actionSequence: NullActionSequence): Promise; export declare function handleMouseMoveAction(this: NovaWindowsDriver, action: PointerMoveAction | ScrollAction): Promise; export declare function handleKeyAction(this: NovaWindowsDriver, action: KeyAction): Promise; export declare function releaseActions(this: NovaWindowsDriver): Promise; //# sourceMappingURL=actions.d.ts.map