import * as React from "react"; import * as SelectPrimitive from "@radix-ui/react-select"; export interface SelectProps extends React.ComponentProps { className?: string; } export declare const Select: ({ onValueChange, ...props }: React.ComponentProps) => import("react/jsx-runtime").JSX.Element; export declare const SelectGroup: ({ ...props }: React.ComponentProps) => import("react/jsx-runtime").JSX.Element; export declare const SelectValue: ({ ...props }: React.ComponentProps) => import("react/jsx-runtime").JSX.Element; export interface SelectTriggerProps extends React.ComponentProps { size?: "sm" | "default"; /** Visual style variant */ variant?: "default" | "ghost"; /** Label text - always use this built-in prop instead of external