/// declare function createNotificationManager(options?: { xLocation?: 'left' | 'center' | 'right'; yLocation?: 'top' | 'center' | 'bottom'; }): { flashNotification: (success: boolean, message: string) => void; Notification: () => JSX.Element; }; export default createNotificationManager;