import * as React from 'react'; import { GaJSAnalytics } from './types'; export interface Props { account: string; domain: string; devId?: string; allowLinker?: boolean; allowHash?: boolean; set?: any[][]; onLoad?(analytics: GaJSAnalytics): void; debug?: boolean; } export declare const SETUP_SCRIPT = "\n window['_gaq'] = window['_gaq'] || [];\n"; export declare function setupWithDebugScript(account: String): string; export declare const GA_JS_SCRIPT = "https://stats.g.doubleclick.net/dc.js"; export default class GaJSGoogleAnalytics extends React.PureComponent { render(): JSX.Element; private setAnalytics; }