import React from 'react'; import { OverwritableType } from 'types'; interface IActionProps { children: React.ReactNode; tagName: T; isSquared?: boolean; } declare function ActionButton({ children, isSquared, tagName, ...domAttrs }: OverwritableType, T>): JSX.Element; declare namespace ActionButton { var defaultProps: { tagName: string; }; } export default ActionButton;