import type { SyvStyles } from '../types'; interface Props { /** show button based on document scroll percentage */ reveal?: number; behavior?: ScrollBehavior; styles?: SyvStyles<'background' | 'color' | 'size' | 'show-x' | 'show-y' | 'transition-duration' | 'z-index'>; } declare const ScrollTop: import("svelte").Component; type ScrollTop = ReturnType; export default ScrollTop;