import { CardsListProps } from '../../components'; export interface UseArticleListBottomContainer { isLoading: boolean; articles: CardsListProps['articles']; hasNextPage: boolean; onLoadMore: () => void; } export declare const useArticleListBottomContainer: (options: { defaultArticles: CardsListProps["articles"]; defaultVariablesForQuery: Required["variablesForQuery"]; }) => UseArticleListBottomContainer;