import type { SharedButtonProps } from '@contractspec/lib.ui-kit-core/interfaces'; import { type VariantProps } from 'class-variance-authority'; import * as React from 'react'; declare const buttonVariants: (props?: ({ variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined; size?: "default" | "sm" | "lg" | "icon" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type ButtonProps = SharedButtonProps & React.ComponentPropsWithoutRef<'button'> & VariantProps & { asChild?: boolean; }; declare const Button: React.ForwardRefExoticComponent, HTMLButtonElement>, "ref"> & VariantProps<(props?: ({ variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined; size?: "default" | "sm" | "lg" | "icon" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string> & { asChild?: boolean; } & React.RefAttributes>; export { Button, buttonVariants };