/// <reference types="react" />
import { IAlertProps } from '../Alert';
export declare const AlertItem: import("react").ForwardRefExoticComponent<Omit<IAlertProps, "outline" | "closed" | "background"> & {
    onAlertItemClose?: () => void;
    classItemName?: string;
} & import("react").RefAttributes<HTMLDivElement>>;
export default AlertItem;
