export declare const isWindow: (obj: any) => obj is Window;
export declare const isDocument: (val: Document | HTMLElement) => val is Document;
declare const getScroll: (target: HTMLElement | Window | Document | null) => number;
export default getScroll;
