import * as React from 'react'; export type AlertBannerVariant = 'default' | 'error' | 'alert' | 'info'; export type AlertBannerType = 'strong' | 'subtle'; export type AlertBannerSize = 'sm' | 'md' | 'lg'; export interface AlertBannerProps extends Omit, 'title'> { title: string; variant?: AlertBannerVariant; type?: AlertBannerType; size?: AlertBannerSize; icon?: React.ReactNode; button?: React.ReactNode; square?: boolean; onClose?: () => void; } export declare const AlertBanner: React.FC;