import { type ComponentInterface } from '../../stencil-public-runtime'; export declare class BiInPageLinks implements ComponentInterface { el: HTMLBiInPageLinksElement; /** * The title of the InPageLinks. */ header: string; /** * Fallback text for the dropdown trigger when no pagelinks have been scrolled past. */ dropdownFallbackText: string; /** * Make the InPageLinks sticky to the top of the page on scroll. * @default false */ sticky: boolean; shouldBeSticky: boolean; showDropdown: boolean; activeElement?: HTMLElement; pageLinkElements: HTMLElement[]; isScrollingUp: boolean; private pagelinkNameAttr; private pagelinkAttr; private renderedAtTime; private lastScrollPosition; componentWillLoad(): void; componentDidLoad(): void; disconnectedCallback(): void; render(): any; private isActive; private updateActiveElement; private getPageLinksOnPage; private onScroll; private handleNavbarVisibility; }