import * as React from "react"; import { Select as SelectPrimitive } from "radix-ui"; declare function Select({ ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function SelectGroup({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function SelectValue({ ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function SelectTrigger({ className, size, children, minWidth, style, ...props }: React.ComponentProps & { size?: "sm" | "default"; /** * Minimum width for the trigger. Set to "fit" for content-sized triggers. * @default "120px" */ minWidth?: "fit" | string; }): import("react/jsx-runtime").JSX.Element; declare function SelectContent({ className, children, position, align, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function SelectLabel({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function SelectItem({ className, children, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function SelectSeparator({ className, ...props }: React.ComponentProps): 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, }; //# sourceMappingURL=select.d.ts.map