/**
 * Create a browser MouseEvent with the specified options
 *
 * @param type - The event type
 * @param x - The location on the X axis
 * @param y - The location on the Y axis
 * @returns The event
 *
 * @example
 * createMouseEvent('click');
 * createMouseEvent('click', 212, 433);
 */
export declare function createMouseEvent(type: string, x?: number, y?: number): MouseEvent;
