import * as react_jsx_runtime from 'react/jsx-runtime';
import { HTMLAttributes } from 'react';

type AlertProps = {
    title?: string;
    description: string;
    variant?: 'solid' | 'outline';
    action?: 'default' | 'info' | 'success' | 'warning' | 'error';
    className?: string;
} & HTMLAttributes<HTMLDivElement>;
declare const Alert: ({ variant, title, description, action, className, ...props }: AlertProps) => react_jsx_runtime.JSX.Element;

export { Alert as default };
