import { type PropsWithChildren } from "react"; /** * A simple alert banner. * * Inspired by: * https://mui.com/material-ui/react-alert/ */ export interface AlertProps extends PropsWithChildren { severity: "error" | "warning" | "info" | "success"; icon?: React.ReactNode; fadeIn?: boolean; /** * When true, the alert will scroll into view when it is rendered. */ scrollIntoView?: boolean; } declare const _default: import("react").NamedExoticComponent; export default _default;