/** * Scroll to and focus an element, similar to native functionality for jumping to an anchor link. * * @param anchor - ID of the element to jump to. This element should be programmatically focusable * (set tabIndex=-1 if not natively focusable) to fully simulate the native jumping behavior. * @param scrollDistance - Offset from the top */ export declare function jumpToAnchor(anchor?: string, scrollDistance?: number): void;