export declare class BrandService { private _get; _brandData: any; private _linkIdCounter; _scriptIdCounter: number; _browserName: string; _browserVersion: string; _browserOS: string; private _deviceOrientation; private _deviceWidth; private _deviceType; private _breakpoints; private _breakpointsClasses; private _breakpointsDeviceTypes; private _breakpointsDefaultDeviceType; private _breakpointsDefaultClass; private _defaultOptions; slugify: any; getCookie: any; setCookie: any; removeCookie: any; options: any; emailValidationPattern: RegExp; emailValidationPatternWithoutUsername: RegExp; constructor(); insertScriptFromSrc(src: string | Array): void; insertLinkFromHref(href: string | Array): void; setBrandInfo(brandData: any): void; getBrandInfo(): any; getBrandNameSlug(): string; getBrandInfoByKey(key: string): string | number | any; setOptions(options: any): void; getLanguage(): any; setLanguage(language: string): void; getProvince(): any; setProvince(province: string): void; setupBrand(brandData: any, options?: any): void; setBodyAttribute(attrName: string, attrValue: string): void; setBrandNameAttr(): void; setDeviceOrientationAttr(): void; setDeviceWidthAndTypeAttr(): void; setBrowserInfo(): void; setBrowserAttr(): void; addClass(classes: string): void; removeClass(classes: string): void; getBodyTagClasses(): string; updateDeviceTypeAndOrientation(): void; getEmailValidator(): RegExp; getEmailValidatorWithoutUsername(): RegExp; }