/** * Scroll an element into view via `element.scrollIntoView`. * * Default `block: 'center'` (rather than the spec default `'start'`) because * UI testing typically wants the element comfortably in the viewport, not * pinned to the top edge where it might be obscured by sticky headers. * * Sentinel: `Element not found: ` when the selector matches nothing. */ export declare const scrollToElement: import("../types").CommandModule;