import { ButtonHTMLAttributes, ReactNode } from 'react';
import { UIButtonVariant } from 'types/UserInterface';
export interface ButtonProps extends Omit, 'className' | 'style'> {
/** The variant of the button. */
variant: UIButtonVariant;
/** The element to show inside the button. */
children: ReactNode;
/** Renders the button as a flex column. */
displayColumn?: boolean;
}
/** Represents a component for a button. */
export declare const Button: import('react').ForwardRefExoticComponent>;