import React, { type ReactNode } from 'react';
import { type FunNotificationBannerIconProps } from './FunNotificationBannerIcon';
interface FunNotificationBannerProps extends FunNotificationBannerIconProps {
    title: string;
    description: ReactNode;
    /** Additional text-like content clarifying the description */
    disclaimer?: ReactNode;
    children?: ReactNode;
    onClosed?: () => void;
    onShowMore?: () => void;
}
export declare const FunNotificationBanner: ({ iconUrl, status, fallbackIconUrl, description, disclaimer, title, children, onClosed, onShowMore, }: FunNotificationBannerProps) => React.JSX.Element;
export {};
