import { Notification, NotificationSchema } from './types'; type UserNotification = Omit, 'id' | 'group'> & Partial, 'group'>>; declare const createNotifier: () => (notification: UserNotification, timeout?: number) => () => void; export default createNotifier;