import { FC } from "react";
export interface AlertProps {
    label: any;
    variants?: "error" | "success";
    className?: string;
    onClick?: () => void;
}
export declare const Alert: FC<AlertProps>;
