import React, { FunctionComponent } from 'react'; import SeverityType, { SeverityIcons } from '../../types/SeverityType'; import { IconType } from '../IconProvider/IconType'; import { flex, box } from '../../utility/box'; export type Props = typeof flex.props & typeof box.props & { severity: SeverityType | 'default'; message?: string; icon?: IconType; 'data-testid'?: string; }; declare const Notification: FunctionComponent>; export default Notification; export { SeverityIcons };