@openmrs/esm-styleguide
Version:
The styleguide for OpenMRS SPA
10 lines • 372 B
TypeScript
/** @module @category UI */
import React from 'react';
import type { Subject } from 'rxjs';
import type { ToastNotificationMeta } from './toast.component';
interface ActiveToastsProps {
subject: Subject<ToastNotificationMeta>;
}
declare const ActiveToasts: React.FC<ActiveToastsProps>;
export default ActiveToasts;
//# sourceMappingURL=active-toasts.component.d.ts.map