export declare class ScrollObserver { /** Select the animation name for the child component on intersection. Choose from list of supplied animations */ animation: string; /** If true, the component will render a child lazy-image */ lazyimage: boolean; host: HTMLElement; private observer; componentDidLoad(): void; onIntersection(entries: any): void; render(): any; }