import { BoxProps } from 'grommet'; import { INotificationProps } from './NotificationProps'; /** * A Box to display notification messages. */ declare const Notification: { ({ status, message, locale, closer, margin, reverse, a11yTitle, background, border, timestamp, icon, strong, round, pad, size, state, onClose, percentComplete, ...rest }: INotificationProps & BoxProps): JSX.Element; defaultProps: { status: string; size: string; message: string; icon: boolean; animation: string; closer: any; pad: string; margin: string; locale: string; }; }; export { Notification };