interface IBehavior { /** * A boolean dictating whether or not to further * reduce the `maxVisibleItems` value of the dropdown * menu when a collision occurs. * * @default true */ clampMaxVisibleItems?: boolean; /** * A boolean dictating whether or not the dropdown * should close when a value is selected. * * @default true */ closeOnSelect?: boolean; /** * A boolean dictating whether or not the dropdown should * watch for updates to the underyling `` UI on mobile devices (while * maintaing a styled "head"). * * @default true */ useNativeUiOnMobile?: boolean; } export default IBehavior;