import { Hook, SheerIdJsApi } from './lib/types/types';

declare global {
    interface Window {
        /**
         * Needed to maintain the ability to set sheerid.hooks globally before loading the jslib.
         */
        sheerId: {
            hooks: Hook[];
        };
        NREUM: any;
        gtag: any;
        IPQ: any;
        Startup: any;
        sheerIdInstallType: string;
        sheerIdProjectSha: string;
    }
}
declare const thisJslib: SheerIdJsApi;
export default thisJslib;
