import React from 'react'; import { ButtonProps, TooltipProps } from '@patternfly/react-core'; export interface SendButtonProps extends ButtonProps { /** OnClick Handler for the Send Button */ onClick: () => void; /** Class Name for the Send button */ className?: string; /** Props to control the PF Tooltip component */ tooltipProps?: TooltipProps; } export declare const SendButton: React.FunctionComponent; export default SendButton;