UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

12 lines (11 loc) 509 B
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 {};