import { JSX, ParentComponent } from 'solid-js'; type IconButtonVariant = "regular" | "filled" | "filledTonal" | "outlined"; type IconButtonProps = { variant?: IconButtonVariant; selected?: boolean; children: JSX.Element; } & (JSX.ButtonHTMLAttributes | JSX.AnchorHTMLAttributes); declare const IconButton: ParentComponent; export { IconButton, type IconButtonProps };