export interface SnackbarProps {
    severity: "success" | "error" | "warning";
    message: string;
    open: boolean;
    onClose: any;
}
