import React from 'react'; import { NoticeProps } from './notice'; export interface NotificationProps extends NoticeProps { placement: string; } export interface INotificationRef { add: (props: NotificationProps) => void; remove: (key?: React.Key) => void; placement: string; notices: NotificationProps[]; } declare const Notification: React.ForwardRefExoticComponent>; export default Notification;