import React, { FC } from 'react'; export interface AnnouncementPropsStrict { /** Name of the action shown to users */ actionName?: string; /** Adds one or more classnames for an element */ className?: string; /** Function that fires when the user clicks on the action */ onActionClick?: (e: React.SyntheticEvent) => void; /** Function that fires when the user clicks the close icon */ onClose?: (e: React.SyntheticEvent) => void; /** Determines the visual appearance and icon of the banner */ status?: 'info' | 'warning' | 'critical'; /** The message displayed to the user */ title: string; } export interface AnnouncementProps extends AnnouncementPropsStrict { [propName: string]: any; } export declare const Announcement: FC;