import React from 'react'; import { ConfigNotificationProps, NotificationHookReturnType, NotificationProps } from './interface'; import useNotification from './useNotication'; declare const NotificationComponent: React.ForwardRefExoticComponent>; declare const Notification: typeof NotificationComponent & NotificationHookReturnType & { clear: () => void; config: (options: ConfigNotificationProps) => void; remove: (id: string) => void; useNotification: typeof useNotification; }; export default Notification;