import { IonAffixContainer } from '../ion-affix-container'; import { Scroll } from 'ionic-angular'; import { Observable } from 'rxjs'; /** * Adapter for ion-scroll. * * @author Jonas Zuberbuehler */ export declare class ScrollAdapter implements IonAffixContainer { scroll: Scroll; scrollingDown: boolean; constructor(scroll: Scroll); onScroll(): Observable; getClientTop(): number; getScrollTop(): number; appendFixedHeader(headerElement: any): void; isScrollingDown(): boolean; }