import { ButtonProps } from 'grommet'; import { Omit } from '../../utils'; /** * A Button with a hover effect, all properties of Button apply. */ declare const IconButton: (props: ButtonProps & Omit) => JSX.Element; export { IconButton };