import { Ref, ReactNode, JSX } from 'react'; import { BoxProps } from "../Box"; import * as styles from './Button.css'; import type { RecipeVariants } from '@vanilla-extract/recipes'; export type ButtonProps = Omit & RecipeVariants & Omit & { ref: Ref; loading?: boolean; loadingText?: ReactNode; }; /** * Button component allows a user to perform an action */ export declare const Button: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;