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