import React from 'react'; 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; } declare const JumpButton: React.FunctionComponent; export default JumpButton;