import { IconButtonProps as MuiIconButtonProps, TooltipProps } from '@material-ui/core'; import { MouseEventHandler, ReactNode } from 'react'; export type IconButtonProps = Omit & { /** * The content of the component. */ children?: ReactNode; onClick?: MouseEventHandler; size?: 'small' | 'medium' | 'large'; variant?: 'transparent' | 'contained' | 'default'; className?: string; isActive?: boolean; tooltipProps?: Omit; classes?: { root?: string; disabled?: string; colorPrimary?: string; sizeSmall?: string; }; 'data-testid'?: string; }; declare const IconButton: ({ tooltipProps, isActive, size, variant, className, "data-testid": dataTestId, ...otherProps }: IconButtonProps) => JSX.Element; export default IconButton; //# sourceMappingURL=index.d.ts.map