/// import { AlertColor, SnackbarOrigin } from '@mui/material'; interface ISnackbarAlertProps { isOpen: boolean; message: string; type: AlertColor; position?: SnackbarOrigin; autoHideDuration?: number; variant?: 'filled' | 'standard' | 'outlined'; onClose: () => void; } declare const SnackbarAlert: ({ isOpen, message, type, position, autoHideDuration, variant, onClose, }: ISnackbarAlertProps) => JSX.Element; export default SnackbarAlert;