import React from "react"; import { AlertProps as MuiAlertProps, AlertColor } from "@mui/material/Alert"; export interface AlertProps extends Omit { /** * Main color of the Alert. * Background with opacity and typography is solid. */ color?: AlertColor; /** * If filled is true, background color will be solid. */ filled?: boolean; /** * If rounded is false, the corners will be flat. */ rounded?: boolean; /** * Text alignment inside the Alert. */ align?: "flex-start" | "center" | "flex-end"; } export declare const backgroundMap: Record; export declare const colorMap: Record; declare const Alert: React.FC; export default Alert;