import { type ReactNode, type HTMLAttributes } from "react"; export type AlertVariant = "info" | "positive" | "warning" | "negative"; export interface AlertProps extends HTMLAttributes { variant?: AlertVariant; icon?: ReactNode; title?: string; children: ReactNode; } export declare const Alert: import("react").ForwardRefExoticComponent>;