/** * Credit - Angular Material */ import { KeyboardEventOptions } from './types'; /** Creates a browser MouseEvent with the specified options. */ export declare function createMouseEvent(type: string, x?: number, y?: number, button?: number): MouseEvent; /** * Creates a browser TouchEvent with the specified pointer coordinates. */ export declare function createTouchEvent(type: string, pageX?: number, pageY?: number): UIEvent; /** Dispatches a keydown event from an element. */ export declare function createKeyboardEvent(type: string, keyOrKeyCode: string | number | KeyboardEventOptions, target?: Element): KeyboardEvent; /** Creates a fake event object with any desired event type. */ export declare function createFakeEvent(type: string, canBubble?: boolean, cancelable?: boolean): Event;