import React from 'react'; interface IconButtonTypes { ariaLabel?: string | undefined; callback?: (() => void) | undefined; icon?: string | undefined; title?: string | undefined; tooltip?: null | undefined; ariaRole?: string | undefined; theme?: string; } declare const IconButton: ({ ariaLabel, callback, icon, title, tooltip, ariaRole, theme, }: IconButtonTypes) => React.JSX.Element; export default IconButton;