declare type HotjarCommand = 'event' | 'identify' | 'stateChange';
export declare type InitOpts = {
    debug?: boolean;
    nonce?: string;
};
export interface WindowWithHotjar extends Window {
    hj?: (method: HotjarCommand, ...data: unknown[]) => void;
}
export declare const checkReadyState: () => boolean;
export declare const executeHotjarCommand: (command: HotjarCommand, ...args: unknown[]) => void;
export declare const initScript: (hotjarId: number, hotjarVersion: number, opts?: InitOpts | undefined) => void;
export {};
