import React from 'react'; import NotificationBannerContainer, { NotificationBannerContainerProps } from '@digigov/react-core/NotificationBannerContainer'; import NotificationBannerContent from '@digigov/react-core/NotificationBannerContent'; import NotificationBannerHeader from '@digigov/react-core/NotificationBannerHeader'; import NotificationBannerHeading from '@digigov/react-core/NotificationBannerHeading'; import NotificationBannerLink from '@digigov/react-core/NotificationBannerLink'; export interface NotificationBannerProps extends NotificationBannerContainerProps { variant?: 'info' | 'success' | 'error'; title?: string; link?: { href: string; label: string; }; ref?: React.Ref; } export declare const NotificationBanner: React.FC; export { NotificationBannerContainer, NotificationBannerHeader, NotificationBannerContent, NotificationBannerHeading, NotificationBannerLink, }; export default NotificationBanner;