@hhgtech/hhg-components
Version:
Hello Health Group common components
7 lines (6 loc) • 331 B
TypeScript
import React from 'react';
import type { NotificationProps } from '@mantine/notifications';
export declare function NotificationsHandler(): React.JSX.Element;
export declare const showNotification: ({ type, title, ...rest }: {
type: 'success' | 'danger' | 'warning' | 'info' | 'firebase';
} & NotificationProps) => void;