import React from 'react'; import { Theme } from '@plurid/plurid-themes'; export interface NotifierProperties { theme: Theme; action: (notifier: any) => void; cancel?: () => void; } declare const Notifier: React.FC; export default Notifier;