/// import type { BasicListItemProps } from '../BasicListItem'; export type IconButtonPropTypes = { iconName: BasicListItemProps['iBtn2IconName']; state?: 'normal' | 'disabled'; fill: boolean; onClick?: (e: React.MouseEvent) => void; }; declare const IconButton: React.FC; export default IconButton;