import * as React from 'react' import { ButtonProps } from '../Button' interface ClickableProps extends ButtonProps { /** * A boolean flag to determine if the button should **not** have any padding. */ withoutPadding?: boolean } type ClickableComponentProps = React.ButtonHTMLAttributes & React.RefAttributes & { as?: keyof JSX.IntrinsicElements | React.ComponentType forwardedAs?: keyof JSX.IntrinsicElements | React.ComponentType } & ClickableProps type ClickableComponent = SynthReact.SynthComponent< ClickableComponentProps, HTMLButtonElement > /** * @since 1.0.0 */ declare const Clickable: ClickableComponent export { ClickableComponent, ClickableComponentProps, ClickableProps } export default Clickable