export interface AlertProps { color: "info" | "success" | "warning" | "error"; icon?: React.ReactNode; title?: React.ReactNode; content?: React.ReactNode; actions?: React.ReactNode; variant?: "outline" | "dash" | "soft"; className?: string; slots?: { actions?: string; body?: string; title?: string; content?: string; }; } export declare function Alert(props: AlertProps): import("react").JSX.Element;