import { ReactNode } from 'react'; import { BulmaColor, BulmaSize } from './utils'; export interface ButtonProps { color?: BulmaColor; size?: BulmaSize; outlined?: boolean; inverted?: boolean; rounded?: boolean; active?: boolean; loading?: boolean; icon?: ReactNode; iconAfter?: ReactNode; children?: ReactNode; } export declare function Button({ color, size, outlined, inverted, rounded, active, loading, icon, iconAfter, children, }: ButtonProps): JSX.Element;