import * as React from "react"; import { type ButtonElProps } from "../html/index.js"; export type ButtonProps = ButtonElProps & { asChild?: boolean; }; declare const Button: React.ForwardRefExoticComponent & import("class-variance-authority").VariantProps<(props?: ({ variant?: "default" | "link" | "destructive" | "outline" | "secondary" | "ghost" | "action" | "action-destructive" | "fab" | "ghost-dismiss" | "card" | "chrome" | null | undefined; size?: "default" | "auto" | "fab" | "sm" | "lg" | "icon" | null | undefined; fullWidth?: boolean | null | undefined; position?: "bottom-right" | "bottom-left" | null | undefined; responsive?: "mobileOnly" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string> & { asChild?: boolean; } & React.RefAttributes>; export { Button }; export * from "./variants.js"; //# sourceMappingURL=index.d.ts.map