import { Event } from './Event'; export declare class GestureEvent extends Event { static classInitializer: any; static classSymbols: string[]; static instanceSymbols: string[]; constructor(type: string, bubbles?: boolean, cancelable?: boolean, phase?: string, localX?: number, localY?: number, ctrlKey?: boolean, altKey?: boolean, shiftKey?: boolean); static GESTURE_TWO_FINGER_TAP: string; private _phase; private _localX; private _localY; private _ctrlKey; private _altKey; private _shiftKey; get localX(): number; set localX(value: number); get localY(): number; set localY(value: number); get stageX(): number; get stageY(): number; get ctrlKey(): boolean; set ctrlKey(value: boolean); get altKey(): boolean; set altKey(value: boolean); get shiftKey(): boolean; set shiftKey(value: boolean); get phase(): string; set phase(value: string); updateAfterEvent(): void; NativeCtor(phase: string, localX: number, localY: number, ctrlKey: boolean, altKey: boolean, shiftKey: boolean): void; clone(): Event; toString(): string; } //# sourceMappingURL=GestureEvent.d.ts.map