import { IcProtectiveMarkings } from "./ic-classification-banner.types"; export declare class ClassificationBanner { /** * The additional information that will be displayed after the classification. */ additionalSelectors?: string; /** * The classification level to be displayed - also determines the banner and text colour. */ classification?: IcProtectiveMarkings; /** * The optional text that will be displayed before classification to specify relevant country/countries. */ country?: string; /** * The custom text that will appear on the banner. If set, the `additionalSelectors`, `country` and `upTo` props are ignored. */ customClassificationText?: string; /** * If `true`, the banner will appear inline with the page, instead of sticking to the bottom of the page. */ inline?: boolean; /** * If `true`, "Up to" will be displayed before the classification and country. */ upTo?: boolean; render(): any; }