/**
 * Window scroll position
 */
export interface IScrollPos {
    x: number;
    y: number;
}
/**
 * Detect window scroll
 * @returns Scroll location
 */
export declare const useWindowScroll: () => IScrollPos;
