import { Select as SelectPrimitive } from '@base-ui/react/select'; import { SelectValueOverflowRenderInfo, SelectValueProps } from './type'; import * as React from "react"; declare function Select({ value, defaultValue, onValueChange, items, multiple, disabled, readOnly, itemToStringLabel, isItemEqualToValue, ...props }: SelectPrimitive.Root.Props): import("react/jsx-runtime").JSX.Element; declare function SelectGroup({ className, ...props }: SelectPrimitive.Group.Props): import("react/jsx-runtime").JSX.Element; declare function SelectValue({ className, children, placeholder, renderOverflow, ...props }: SelectValueProps): import("react/jsx-runtime").JSX.Element; declare function SelectTrigger({ className, size, children, ...props }: SelectPrimitive.Trigger.Props & { size?: "sm" | "default"; }): import("react/jsx-runtime").JSX.Element; declare function SelectContent({ className, children, side, sideOffset, align, alignOffset, alignItemWithTrigger, ...props }: SelectPrimitive.Popup.Props & Pick): import("react/jsx-runtime").JSX.Element; declare function SelectLabel({ className, ...props }: SelectPrimitive.GroupLabel.Props): import("react/jsx-runtime").JSX.Element; declare function SelectItem({ className, children, ...props }: SelectPrimitive.Item.Props): import("react/jsx-runtime").JSX.Element; declare function SelectSeparator({ className, ...props }: SelectPrimitive.Separator.Props): import("react/jsx-runtime").JSX.Element; declare function SelectScrollUpButton({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function SelectScrollDownButton({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, }; export type { SelectValueOverflowRenderInfo, SelectValueProps };