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 {};