UNPKG

razor-shared-library

Version:
12 lines (11 loc) 426 B
import { ReactElement } from 'react'; import { SnackbarProps } from '@mui/material/Snackbar'; import { StandardSeverity } from '../../../../../../../../src/shared/types'; interface Props { text: string; handleClose: () => void; open: boolean; severity: StandardSeverity; } export declare function SnackbarCustom({ text, handleClose, open, severity, ...props }: Props & SnackbarProps): ReactElement; export {};