import React from "react"; import classnames from "classnames"; type InputButtonProps = { "data-wd-key"?: string "aria-label"?: string onClick?(...args: unknown[]): unknown style?: object className?: string children?: React.ReactNode disabled?: boolean type?: typeof HTMLButtonElement.prototype.type id?: string title?: string }; export default class InputButton extends React.Component { render() { return ; } }