import React from 'react'; export declare type NotificationProps = { /** The title of the notificatin. */ title: string; /** Text of the notification. */ text: string; /** Function to invoke when notification is acknowledged. */ onAcknowledgement: () => void; /** Number of times this notification has been received. * If not provided, no occurrence count is shown. * */ occurences?: number; /** Background color for notification. Any acceptable CSS color definition. * Defaults to LIGHT_GREEN. */ color?: string; /** Additional styles to apply to the component's outer div. * Can also be used to override existing styles on the div. */ containerStyles?: React.CSSProperties; /** add showWarningIcon to show warning icon */ showWarningIcon?: boolean; }; /** A notification widget to alert the user to some event. */ export default function Notification({ title, text, onAcknowledgement, occurences, color, containerStyles, showWarningIcon, }: NotificationProps): JSX.Element; //# sourceMappingURL=Notification.d.ts.map