import * as React from "react"; declare const buttonVariants: { base: string; variant: { default: string; destructive: string; outline: string; secondary: string; ghost: string; link: string; }; size: { default: string; sm: string; lg: string; icon: string; }; }; export interface ButtonProps extends Omit, "href"> { asChild?: boolean; href?: string; variant?: keyof typeof buttonVariants.variant; size?: keyof typeof buttonVariants.size; } declare const Button: React.ForwardRefExoticComponent>; export { Button };