import { LitElement } from 'lit'; export type NJC_BANNER_VARIANTS = 'info' | 'warning' | 'error' | 'success' | 'AI'; declare const NjcBanner_base: typeof LitElement; export declare class NjcBanner extends NjcBanner_base { /** @property variant - The variant of the banner @type {NJC_BANNER_VARIANTS} **/ variant: NJC_BANNER_VARIANTS; /** * @property ariaLabel - The aria-label for the banner. Converted to `data-aria-label` after render. * @type {string} */ ariaLabel: string; } export {};