import { VariantProps } from "class-variance-authority";
import messageVariants from "./variants";
import { ComponentProps, FC } from "react";
interface MessagesProps extends ComponentProps<"span">, VariantProps<typeof messageVariants> {
    closable?: "button" | "timer" | "both" | "none";
    timer?: number;
    hasIcon?: boolean;
    icon?: any;
    onClose?: () => void;
    disableAutoRemove?: boolean;
}
declare const Message: FC<MessagesProps>;
export default Message;
