import { ComponentChildren } from "preact"; type IconButtonProps = { children?: ComponentChildren; onClick?: (e: MouseEvent) => void; disabled?: boolean; label?: string; borderless?: boolean; fill?: boolean | string; }; declare const IconButton: ({ children, onClick, disabled, label, borderless, fill }: IconButtonProps) => import("preact").JSX.Element; export default IconButton;