import React, { SyntheticEvent } from 'react'; import './common-button.css'; export declare const RefreshButton: React.FC<{ onClick: (() => void) | ((e: SyntheticEvent) => void); text?: string; htmlType?: 'button' | 'submit' | 'reset'; extraClass?: string; }>;