/// import { GaJSAnalytics } from './types'; export interface Props { account: string; domain: string; nonce?: string; devId?: string; allowLinker?: boolean; allowHash?: boolean; set?: any[][]; onLoad?(analytics: GaJSAnalytics): void; disableTracking?: 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 function GaJSGoogleAnalytics({ account, domain, disableTracking, nonce, devId, allowLinker, allowHash, set: setVariables, onLoad, }: Props): JSX.Element;