import { HTMLAttributes } from 'react'; import { IconDefinition } from '@fortawesome/fontawesome-svg-core'; export declare type Styling = 'primary' | 'secondary'; export interface RoundButtonProps extends HTMLAttributes { label?: string; styling?: Styling; $loading?: boolean; disabled?: boolean; icon?: IconDefinition; as?: 'button' | 'div' | 'a'; } declare const RoundButton: ({ $loading, styling, disabled, label, icon, ...rest }: RoundButtonProps) => JSX.Element; export default RoundButton;