import * as React from "react"; export interface Props { type?: "button" | "submit" | "reset"; children: any; id?: string; variant?: "solid" | "outlined" | "text" | "inverted" | "destructive"; ariaLabel?: string; className?: string; compact?: boolean; disabled?: boolean; loading?: boolean; inlineIcon?: JSX.Element; iconPosition?: "leading" | "trailing"; onClick?: (e: React.MouseEvent) => void; onBlur?: (e: React.FocusEvent) => void; inputRef?: any; fullWidth?: boolean; } declare const Button: React.FC; export default Button;