import { ReactNode } from "react"; export declare type AlertProps = { children?: ReactNode; severity?: "neutral" | "warning" | "error" | "success" | "info"; }; export declare const Alert: ({ children, severity }: AlertProps) => import("@emotion/react/jsx-runtime").JSX.Element;