import * as React from "react";
import type { VariantProps } from "class-variance-authority";
declare const destructiveButtonVariants: (props?: ({
    variant?: "link" | "primary" | "secondary" | "tertiary" | null | undefined;
    disable?: boolean | null | undefined;
    size?: "link" | "default" | "sm" | "md" | "lg" | "xl" | "2xl" | null | undefined;
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
export interface DestructiveButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof destructiveButtonVariants> {
    asChild?: boolean;
}
declare const DestructiveButton: React.ForwardRefExoticComponent<DestructiveButtonProps & React.RefAttributes<HTMLButtonElement>>;
export { DestructiveButton, destructiveButtonVariants };
