import { SugarElement } from '../node/SugarElement'; import { SugarPosition } from './SugarPosition'; interface ScrollCapture { readonly save: () => void; readonly restore: () => void; } declare const get: (_DOC?: SugarElement) => SugarPosition; declare const to: (x: number, y: number, _DOC?: SugarElement) => void; declare const by: (x: number, y: number, _DOC?: SugarElement) => void; declare const setToElement: (win: Window, element: SugarElement) => void; declare const preserve: (doc: SugarElement, f: () => void) => void; declare const capture: (doc: SugarElement) => ScrollCapture; declare const intoView: (element: SugarElement, alignToTop: boolean) => void; declare const intoViewIfNeeded: (element: SugarElement, container: SugarElement) => void; declare const scrollBarWidth: () => number; export { get, to, by, preserve, capture, intoView, intoViewIfNeeded, setToElement, scrollBarWidth }; //# sourceMappingURL=Scroll.d.ts.map