import type { FunctionComponent } from 'react'; import { TooltipProps, ButtonProps } from '@patternfly/react-core'; export interface JumpButtonProps { /** Position of the Jump Button(top/bottom) */ position: 'top' | 'bottom'; /** Callback for the onClick event */ onClick: () => void; /** Flag to change the visibilty of the button */ isHidden?: boolean; /** Additional props passed to jump buttons */ jumpButtonProps?: ButtonProps; /** Additional props passed to tooltip */ jumpButtonTooltipProps?: TooltipProps; } declare const JumpButton: FunctionComponent; export default JumpButton;