import { Button as Component } from './Button'; export declare const Button: { readonly name: "Button"; readonly purpose: "Button-styled label for display-only artifact actions."; readonly example: ""; readonly body: "htmdx"; readonly props: readonly [{ readonly name: "asChild"; readonly type: "boolean"; readonly default: false; readonly description: "Use the single child element as the button-styled control."; }, { readonly name: "variant"; readonly type: "string"; readonly values: readonly ["default", "destructive", "outline", "secondary", "ghost", "link"]; readonly default: "default"; readonly description: "Visual emphasis of the button."; }, { readonly name: "size"; readonly type: "string"; readonly values: readonly ["default", "sm", "lg", "icon"]; readonly default: "default"; readonly description: "Button height and padding preset."; }]; readonly Component: typeof Component; };