import { ScrollStrategy } from './scroll-strategy'; import { OverlayRef } from '../overlay-ref'; import { ScrollDispatcher } from './scroll-dispatcher'; /** * Strategy that will close the overlay as soon as the user starts scrolling. */ export declare class CloseScrollStrategy implements ScrollStrategy { private _scrollDispatcher; private _scrollSubscription; private _overlayRef; constructor(_scrollDispatcher: ScrollDispatcher); attach(overlayRef: OverlayRef): void; enable(): void; disable(): void; }