import * as React from "react"; import * as SelectPrimitive from "@radix-ui/react-select"; declare const Select: React.FC; declare const SelectGroup: React.ForwardRefExoticComponent>; declare const SelectValue: React.ForwardRefExoticComponent>; declare const SelectTrigger: React.ForwardRefExoticComponent, "ref"> & { /** Width behavior: "full" (default) stretches to container, "auto" sizes to content (for inline/filter layouts) */ width?: "full" | "auto"; } & React.RefAttributes>; declare const SelectContent: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const SelectItem: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export { Select, SelectGroup, SelectValue, SelectTrigger, SelectContent, SelectItem }; export * from "./variants.js"; //# sourceMappingURL=index.d.ts.map