export declare function addEventListener(node: Element | Window, event: string, listener: EventListener): void; export declare function removeEventListener(node: Element | Window, event: string, listener: EventListener): void; /** * Returns true if the HTML5 history API is supported. Taken from Modernizr. * * https://github.com/Modernizr/Modernizr/blob/master/LICENSE * https://github.com/Modernizr/Modernizr/blob/master/feature-detects/history.js * changed to avoid false negatives for Windows Phones: https://github.com/reactjs/react-router/issues/586 */ export declare function supportsHistory(): boolean; /** * Returns false if using go(n) with hash history causes a full page reload. */ export declare function supportsGoWithoutReloadUsingHash(): boolean; export declare const canUseDOM: boolean;