/// interface Props { backgroundHover?: string; callback: () => void; fontHover?: string; isActive?: boolean; radius?: number; title: string; tooltip: boolean; themeClass?: string; srText: string; } declare const IconButton: ({ tooltip, callback, radius, themeClass, title, backgroundHover, fontHover, isActive, srText }: Props) => JSX.Element; export default IconButton;