import * as React from 'react';
import { type VariantProps } from 'class-variance-authority';
/**
 * Very small Shadcn-lookalike button built with tailwind + cva helper.
 * It supports the `variant` and `size` props used by the standard shadcn Button.
 */
declare const buttonVariants: (props?: ({
    variant?: "default" | "secondary" | "outline" | null | undefined;
    size?: "default" | "sm" | "lg" | null | undefined;
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
}
export declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
export {};
