import { FC } from 'react'; export interface NotificationProps { message: string; isOpen?: boolean; type?: 'error' | 'info' | 'success' | 'warning'; handleClose?: () => void; } declare const Notification: FC; export default Notification;