import { ButtonProps } from "./Button.types.js"; import * as react_jsx_runtime26 from "react/jsx-runtime"; import React from "react"; //#region src/Button/Button.d.ts type ButtonComponentProps = ButtonProps & React.RefAttributes; /** * All-in-one Button: * - use "variant" to achieve the desired style * - include tooltips and/or icons */ declare const Button: ({ onClick, label, variant, type, size, disabled, inProgress, extraClassNames, id, testId, stopPropagation, tooltip, tooltipOptions, iconStyle, icon, iconColor, iconPosition, iconPrefix, preventBlur, isHtmlTooltip, tooltipTestId, ref, ...rest }: ButtonComponentProps) => react_jsx_runtime26.JSX.Element; //#endregion export { Button as default };