import type { WithNormalizedProps } from "../../global"; import type { Input as ButtonInput } from "../ebay-button/index.marko"; interface IconButtonInput extends Omit, Omit { "badge-number"?: number | string; href?: string; transparent?: boolean; priority?: "primary" | "secondary" | "tertiary" | "none"; size?: "small" | "large"; partiallyDisabled?: ButtonInput["partiallyDisabled"]; "badge-aria-label"?: Marko.HTMLAttributes["aria-label"]; "on-click"?: (event: { originalEvent: MouseEvent; }) => void; "on-escape"?: (event: { originalEvent: KeyboardEvent; }) => void; "on-focus"?: (event: { originalEvent: FocusEvent; }) => void; "on-blur"?: (event: { originalEvent: FocusEvent; }) => void; } export interface Input extends WithNormalizedProps { } declare class IconButton extends Marko.Component { handleClick(originalEvent: MouseEvent): void; handleKeydown(originalEvent: KeyboardEvent): void; handleFocus(originalEvent: FocusEvent): void; handleBlur(originalEvent: FocusEvent): void; } export default IconButton;