import { default as React } from 'react';
export interface AlertProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
    title: string;
    description?: string;
    type?: 'success' | 'error' | 'warning' | 'info';
    onClose?: () => void;
    customIcon?: React.ReactNode;
    bgColor?: string;
    borderColor?: string;
    iconColor?: string;
    textColor?: string;
}
export declare const Alert: React.FC<AlertProps>;
