import type { FunctionComponent } from 'react'; import { ButtonProps, TooltipProps } from '@patternfly/react-core'; export interface SendButtonProps extends ButtonProps { /** Callback for when button is clicked */ onClick: (event: React.MouseEvent) => void; /** Class Name for SendButton */ className?: string; /** Props to control the PF Tooltip component */ tooltipProps?: Omit; /** English text "Send" used in the tooltip */ tooltipContent?: string; /** Whether send button has compact styling */ isCompact?: boolean; } export declare const SendButton: FunctionComponent; export default SendButton;