import * as React from 'react'; export declare const blockClass: string; export interface BasicButtonProps extends React.AllHTMLAttributes { to?: string; border?: boolean; fill?: boolean; size?: number; width?: 'auto' | number | string; height?: number | string; round?: boolean; title?: string; positive?: boolean; noOutline?: boolean; transparent?: boolean; compact?: boolean; spacious?: boolean; radius?: number | string; onClick?: React.MouseEventHandler; } export declare const BasicButton: React.FC;