/// import * as React from 'react'; export interface ActionButtonProps { okProps?: any; cancelProps?: any; autoFocus?: boolean; } export interface ActionButtonState { loading: boolean; } export default class ActionButton extends React.Component { timeoutId: number; constructor(props: ActionButtonProps); componentDidMount(): void; componentWillUnmount(): void; onClick: (props: any) => void; render(): JSX.Element; }