import { type VariantProps } from "class-variance-authority"; import * as React from "react"; import type { DesignSystemEmphasis, DesignSystemIntent } from "../design-system/types.js"; declare const buttonVariants: (props?: ({ variant?: "default" | "destructive" | "ghost" | "link" | "outline" | "secondary" | null | undefined; size?: "default" | "icon" | "lg" | "sm" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface ButtonProps extends React.ButtonHTMLAttributes, VariantProps { asChild?: boolean; /** Semantic meaning forwarded to a registered design-system ActionButton. */ intent?: DesignSystemIntent; /** Semantic prominence forwarded independently of the default visual variant. */ emphasis?: DesignSystemEmphasis; } declare const ButtonBase: React.ForwardRefExoticComponent>; declare const Button: React.ForwardRefExoticComponent>; export { Button, ButtonBase, buttonVariants }; //# sourceMappingURL=button.d.ts.map