import { TranslationsInterface } from '../cookie-consent/cookie-consent.interface'; export declare class ContentBlocker { /** The content blocker title */ message: string; /** A paragraph text to explain the content blocker title */ description: string; /** The icon name (eg: ai-close) */ icon: string; /** Extra CSS class(es) to add */ branding: string; /** Set the translation strings for the content blocker */ translations: string; translationData: TranslationsInterface; componentWillLoad(): void; parseTranslationsProp(newValue: string): void; handleTranslations(translations?: TranslationsInterface): void; openCookiePreferences(): void; render(): any; }