/**
 * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
 */
/**
 * @module ai/aichathistory/ui/aichathistorysectionlistview
 */
import { ListView, type FilteredView } from '@ckeditor/ckeditor5-ui';
import type { AIChatHistoryListView } from './aichathistorylistview.js';
export declare class AIChatHistorySectionListView extends ListView implements FilteredView {
    sections: Array<AIChatHistoryListView>;
    constructor(locale: any, sections: Array<AIChatHistoryListView>);
    /**
     * Filters all sections based on the given regular expression.
     */
    filter(regExp: RegExp | null): {
        resultsCount: number;
        totalItemsCount: number;
    };
}
