import { SearchInAction } from '../../ItemPickerNew/types/actions.types'; import { BaseItemType, BaseSectionType } from '../../ItemPickerNew/types/baseItemSectionType.types'; type ResolveSectionIdOptions = { searchInItem: ItemType | undefined; searchInAction: SearchInAction | undefined; currentSection: BaseSectionType | undefined; }; export declare const resolveSectionId: ({ currentSection, searchInAction, searchInItem, }: ResolveSectionIdOptions) => { isListItemsRenderingMode: boolean; activeSectionId: string | undefined; }; export {};