import { IOptionGroup, InputSearchNoResultTextType } from '../types/inputSearch';
type ShouldBePopoverOpenedParamsType = {
    open: boolean;
    useActionBottomSheet?: boolean;
    options: IOptionGroup[];
    loadingList?: boolean;
    noResultText?: InputSearchNoResultTextType;
    hasHighlightedOption?: boolean;
};
export declare const shouldOpenPopover: ({ open, useActionBottomSheet, options, loadingList, noResultText, hasHighlightedOption, }: ShouldBePopoverOpenedParamsType) => boolean;
export {};
