import type { ListBoxItemProps, ListBoxSectionProps } from '../listbox';

import { ListBoxItem, ListBoxSection } from '../listbox';
import CustomSelect from './customSelect';

import { Select } from './select';

// export types
export type { SelectProps } from './select';
export type { ListBoxItemProps as SelectItemProps, ListBoxSectionProps as SelectSectionProps };

// export component
export { Select, ListBoxItem as SelectItem, ListBoxSection as SelectSection, CustomSelect };
