import React from 'react'; import { ActionMeta } from '../../app'; interface IProps { style?: React.CSSProperties; pageKey: string; meta: ActionMeta; buttonKey: string; forceUpdate: Function; history: any; match: any; } declare function _Button(props: IProps): JSX.Element; export declare const Button: React.MemoExoticComponent; export {};