import { notify, Status as NotificationStatus, Notification } from 'reapop';
type UpsertNotificationAction = ReturnType<typeof notify>;
export declare const createNotification: (id: string, status: NotificationStatus, message: string, props?: Partial<Notification>) => UpsertNotificationAction;
export declare const createNotificationError: (id: string, error: Error, props?: Partial<Notification>) => UpsertNotificationAction;
export { dismissNotification } from 'reapop';
