/**
 */
export declare class SallaInfiniteScroll {
    constructor();
    /**
     * Next Page element
     */
    nextPage: string;
    /**
     * Is there is need to autoload next page when scroll `next-page-autoload|next-page.autoload`
     */
    autoload: boolean;
    /**
     * Class selector to know the container if it's not the host `<salla-infinite-scroll>`
     */
    container: string;
    /**
     * Load more text
     */
    loadMoreText: string;
    /**
     * Class selector to know list items
     */
    item: string;
    loadMore: string;
    noMore: string;
    failedToLoad: string;
    private readonly status;
    private btnLoader;
    host: HTMLElement;
    private loading;
    render(): any;
    componentDidLoad(): void;
}
