/** * Function to scroll an elements contents vertically or horizontally */ type ScrollProperty = 'scrollLeft' | 'scrollTop'; type ScrollableTarget = Element & Record; export declare function scrollHorizontal(scrollTarget: string | ScrollableTarget, scrollValue: number): void; export declare function scrollVertical(scrollTarget: string | ScrollableTarget, scrollValue: number): void; export {};