import React from 'react'; import { TooltipProps } from '@patternfly/react-core'; export interface ResponseActionButtonProps { /** Aria-label for the button. Defaults to the value of the tooltipContent if none provided */ ariaLabel?: string; /** Icon for the button */ icon: React.ReactNode; /** On-click handler for the button */ onClick?: ((event: MouseEvent | React.MouseEvent | KeyboardEvent) => void) | undefined; /** Class name for the button */ className?: string; /** Props to control if the attach button should be disabled */ isDisabled?: boolean; /** Content shown in the tooltip */ tooltipContent?: string; /** Props to control the PF Tooltip component */ tooltipProps?: TooltipProps; } export declare const ResponseActionButton: React.FunctionComponent; export default ResponseActionButton;