import * as React from "react"; import type { AlertProps as MuiAlertProps } from "@mui/lab"; export declare const SEVERITIES: string[]; export interface AlertProps extends Pick { title?: React.ReactNode; } export declare const Alert: React.FC; export interface AlertPanelProps { direction?: "row" | "column"; children: React.ReactElement | React.ReactElement[]; } export declare const AlertPanel: ({ direction, children }: AlertPanelProps) => JSX.Element; //# sourceMappingURL=alert.d.ts.map