UNPKG

dmeditor

Version:

dmeditor is a block-style visual editor. Data is in json format.

9 lines (8 loc) 268 B
import { ReactNode } from 'react'; import { AlertColor } from '@mui/material'; interface UseAlertResult { showAlert: (message: string, severity?: AlertColor) => void; AlertComponent: ReactNode; } export declare const useAlert: () => UseAlertResult; export {};