import * as React$1 from "react"; import * as react_jsx_runtime0 from "react/jsx-runtime"; import * as SelectPrimitive from "@radix-ui/react-select"; //#region src/react/ui/select.d.ts /** Dropdown control for selecting a value from a list */ declare function Select({ ...props }: React$1.ComponentProps): react_jsx_runtime0.JSX.Element; declare function SelectGroup({ ...props }: React$1.ComponentProps): react_jsx_runtime0.JSX.Element; declare function SelectValue({ ...props }: React$1.ComponentProps): react_jsx_runtime0.JSX.Element; declare function SelectTrigger({ className, size, children, ...props }: React$1.ComponentProps & { size?: "sm" | "default"; }): react_jsx_runtime0.JSX.Element; declare function SelectContent({ className, children, position, align, ...props }: React$1.ComponentProps): react_jsx_runtime0.JSX.Element; declare function SelectLabel({ className, ...props }: React$1.ComponentProps): react_jsx_runtime0.JSX.Element; /** * Select item component for individual options in a dropdown. * * @warning SelectItem cannot have value="". Use a sentinel value like "all" or "none" instead due to Radix UI constraint. * * @example * ```tsx * Option 1 * All Items // Use "all" instead of "" * ``` */ declare function SelectItem({ className, children, ...props }: React$1.ComponentProps): react_jsx_runtime0.JSX.Element; declare function SelectSeparator({ className, ...props }: React$1.ComponentProps): react_jsx_runtime0.JSX.Element; declare function SelectScrollUpButton({ className, ...props }: React$1.ComponentProps): react_jsx_runtime0.JSX.Element; declare function SelectScrollDownButton({ className, ...props }: React$1.ComponentProps): react_jsx_runtime0.JSX.Element; //#endregion export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue }; //# sourceMappingURL=select.d.ts.map