import { Group, Value } from '@radix-ui/react-select'; declare const SelectRoot: import('react').FC; type SelectComponent = typeof SelectRoot & { Group: typeof Group; Value: typeof Value; Trigger: typeof SelectTrigger; Content: typeof SelectContent; Label: typeof SelectLabel; Item: typeof SelectItem; Separator: typeof SelectSeparator; ScrollUpButton: typeof SelectScrollUpButton; ScrollDownButton: typeof SelectScrollDownButton; }; declare const Select: SelectComponent; declare const SelectTrigger: import('react').ForwardRefExoticComponent, "ref">, "className"> & import('react').RefAttributes>; declare const SelectScrollUpButton: import('react').ForwardRefExoticComponent, "ref">, "className"> & import('react').RefAttributes>; declare const SelectScrollDownButton: import('react').ForwardRefExoticComponent, "ref">, "className"> & import('react').RefAttributes>; declare const SelectContent: import('react').ForwardRefExoticComponent, "ref">, "className"> & import('react').RefAttributes>; declare const SelectLabel: import('react').ForwardRefExoticComponent, "ref">, "className"> & import('react').RefAttributes>; declare const SelectItem: import('react').ForwardRefExoticComponent, "ref">, "className"> & import('react').RefAttributes>; declare const SelectSeparator: import('react').ForwardRefExoticComponent, "ref">, "className"> & import('react').RefAttributes>; export { Select }; export type { SelectComponent };