import { ButtonHTMLAttributes, Ref, ReactElement, ReactNode, PureComponent } from 'react'; import PropTypes from 'prop-types'; import { CombinePropsAndAttributes } from '../../helpers'; import { AlignSide, AlignSideVariant } from '../common/types'; interface ISelfProps { elementRef?: Ref; icon?: ReactElement; flexIcon?: boolean; alignIcon?: AlignSide; children?: ReactNode; } export declare type IProps = CombinePropsAndAttributes>; export default class Button extends PureComponent { static propTypes: { elementRef: PropTypes.Requireable<(...args: any[]) => any>; icon: PropTypes.Requireable; flexIcon: PropTypes.Requireable; alignIcon: PropTypes.Requireable; children: PropTypes.Requireable; }; static defaultProps: { flexIcon: boolean; alignIcon: AlignSideVariant; }; render(): JSX.Element; } export {}; //# sourceMappingURL=Button.d.ts.map