import { Component } from 'react'; import { IconSizeType, IconType } from '../Icon'; import { IViewProps } from '../View'; import { color } from '../utils/propTypes/color'; interface ISquareIconButtonProps extends IViewProps { readonly icon: IconType; readonly color?: color; readonly iconSize?: IconSizeType; readonly iconColor?: string; } declare class SquareIconButton extends Component { static defaultProps: { color: string; iconColor: string; iconSize: string; }; render(): JSX.Element; } export default SquareIconButton;