declare global {
    interface Window {
        trusteSettings?: {
            URL_PRO: string,
            URL_ADV: string
        };
        truste?: {
            bn?: {
                reopenBanner: () => void;
                bannerMain: () => void;
            };
            eu?: {
                icon: {
                    initialize: () => void;
                };
                irmLink?: Node;
                irmLinkContainer: Node;
            };
        };
    }
}

export {};