import { LegalNoticeCardsListProps } from '../../components'; export interface UseLegalNoticeDepartmentContainer { isLoading: boolean; legalNotices: LegalNoticeCardsListProps['legalNotices']; hasNextPage: boolean; onLoadMore: () => void; } type VariablesForQuery = Exclude; export declare const useLegalNoticeDepartmentContainer: (options: { legalNotices: LegalNoticeCardsListProps["legalNotices"]; defaultVariablesForQuery: VariablesForQuery; }) => UseLegalNoticeDepartmentContainer; export {};