import React from 'react'; import { BaseProps } from '../Common/index'; export declare type IButtonProps = BaseProps & { preventDefault?: boolean; debounce?: boolean; loading?: boolean; disabled?: boolean; }; export declare const Button: React.FC;