import { type RefObject } from 'react'; type Props = { isActive: boolean; scrollRef: RefObject; handleScrollToTop: () => void; }; export declare const OnTopButton: ({ isActive, scrollRef, handleScrollToTop, }: Props) => import("react").ReactPortal | null; export {};