import { HTMLAttributes, PropsWithChildren } from "react";
import { BaselessVariant } from "../../@types/Colors";
import { ButtonSize } from "../../@types/Daisy";
interface IButton extends PropsWithChildren> {
size?: ButtonSize;
variant?: BaselessVariant;
isGhost?: boolean;
isLink?: boolean;
isOutline?: boolean;
isDisabled?: boolean;
isGlass?: boolean;
isLoading?: boolean;
noAnimation?: boolean;
isActive?: boolean;
shape?: "circle" | "square";
}
export declare const Button: import("react").ForwardRefExoticComponent>;
export {};