import React from "react"; export type AlertVariant = "success" | "error" | "warning" | "info"; type AlertProps = React.HTMLAttributes & { variant?: AlertVariant; onClickClose?: () => void; }; export default function Alert({ variant, onClickClose, children, ...props }: AlertProps): React.JSX.Element; export {};