import { FC } from 'react'; import { ButtonVariant, ButtonSize } from '../button/Button'; import { IconTypes } from '../../../../avocado-icons'; export interface RoundButtonProps extends Partial, HTMLButtonElement>> { /** Overwrite className */ className?: string; /** Disabled state */ disabled?: boolean; /** Force light mode styles even in dark mode */ forceLightMode?: boolean; /** Icon name */ icon: IconTypes; /** Loading state */ loading?: boolean; /** Size type */ size?: ButtonSize; /** Variant of the button */ variant?: ButtonVariant; } declare const RoundButton: FC; export default RoundButton;