import { default as React } from 'react';
export interface AlertProps {
    variant: "success" | "error" | "warning" | "info";
    title: string;
    message: string;
    showLink?: boolean;
    linkHref?: string;
    linkText?: string;
    onClose?: () => void;
    className?: string;
    id?: string;
}
export declare const Alert: React.FC<AlertProps>;
