/** * Creates a browser TouchEvent with the specified pointer coordinates. * * @param type - The touch event type * @param pageX - The location on the X axis * @param pageY - The location on the Y axis * * @example * createTouchEvent('touchstart'); * createTouchEvent('touchstart', 212, 433); */ export declare function createTouchEvent(type: string, pageX?: number, pageY?: number): UIEvent;