import { LitElement } from 'lit'; /** * Banner informs users about important changes or conditions in the * interface. Use this component if you need to communicate to users * in a prominent way. * * @status ready * @category feedback * @slot - default slot * * @cssprop [--n-banner-border-radius=var(--n-border-radius)] - Controls how rounded the corners are, using [border radius tokens](/tokens/#border-radius). * @cssprop [--n-banner-box-shadow=var(--n-box-shadow-card)] - Controls the surrounding shadow, using [box shadow tokens](/tokens/#box-shadow). */ export default class Banner extends LitElement { static styles: import("lit").CSSResult[]; /** * The style variant of the banner. */ variant: 'info' | 'danger' | 'success' | 'warning'; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'nord-banner': Banner; } }