import type { EventDescription } from 'coveo.analytics'; import type { SearchRequest } from '../../api/search/search/search-request.js'; import type { NavigatorContext } from '../../app/navigator-context-provider.js'; import type { SearchAppState } from '../../state/search-app-state.js'; import type { ConfigurationSection } from '../../state/state-sections.js'; type StateNeededByExecuteSearchAndFolding = ConfigurationSection & Partial; export declare const buildSearchAndFoldingLoadCollectionRequest: (state: StateNeededByExecuteSearchAndFolding, navigatorContext: NavigatorContext, eventDescription?: EventDescription) => SearchRequest; export {};