import * as React from "react"; import { IProps } from "./PropsType"; interface IState { active: boolean; } declare class Button extends React.Component { private timer; private time; private center; private rectangle; private buttonRef; static defaultProps: { prefixCls: string; inline: boolean; disabled: boolean; loading: boolean; threshold: number; preventDefault: boolean; stopPropagation: boolean; activeStyle: {}; }; constructor(props: IProps); clearTimer(): void; onCancel(): void; onActive(act: boolean): void; onThrough(e: any): boolean; touchStart(e: any): void; touchEnd(): void; componentWillUnmount(): void; render(): JSX.Element; } export default Button;