/**
 * JS version of browser APIs. This library can only run in the browser.
 */
declare var win: Window;
export { win as window };
export declare var document: Document;
export declare var location: Location;
export declare var gc: () => any;
export declare var performance: Performance;
export declare const Event: any;
export declare const MouseEvent: any;
export declare const KeyboardEvent: any;
export declare const EventTarget: any;
export declare const History: any;
export declare const Location: any;
export declare const EventListener: any;
