import { Select as SelectRoot } from './Select'; import { SelectTrigger } from './SelectTrigger'; import { SelectContent } from './SelectContent'; import { SelectViewport } from './SelectViewport'; import { SelectItem } from './SelectItem'; import { SelectGroup } from './SelectGroup'; import { SelectLabel } from './SelectLabel'; import { SelectSeparator } from './SelectSeparator'; import { SelectArrow } from './SelectArrow'; export { useSelectContext, useSelectGroupContext, useSelectItemContext, useSelectCollectionContext, } from './hooks'; declare const Select: typeof SelectRoot & { Root: typeof SelectRoot; Trigger: typeof SelectTrigger; Content: typeof SelectContent; Viewport: typeof SelectViewport; Item: typeof SelectItem; Group: typeof SelectGroup; Label: typeof SelectLabel; Separator: typeof SelectSeparator; Arrow: typeof SelectArrow; }; export { Select, SelectRoot, SelectTrigger, SelectContent, SelectViewport, SelectItem, SelectGroup, SelectLabel, SelectSeparator, SelectArrow, }; export type { SelectProps, SelectTriggerProps, SelectTriggerRenderProps, SelectContentProps, SelectViewportProps, SelectItemProps, SelectItemRenderProps, SelectGroupProps, SelectLabelProps, SelectSeparatorProps, SelectArrowProps, SelectContextValue, } from './types';