import React, { ChangeEvent } from "react"; export type SelectValue = string | number | boolean; export type SelectProps = { open?: boolean; name?: string; fullWidth?: boolean; id?: string; onOpenChange?: (open: boolean) => void; value?: T; className?: string; inputClassName?: string; viewportClassName?: string; onChange?: React.EventHandler>; onValueChange?: (updatedValue: T) => void; placeholder?: React.ReactNode; renderValue?: (value: T) => React.ReactNode; size?: "smallest" | "small" | "medium" | "large"; label?: React.ReactNode | string; disabled?: boolean; error?: boolean; position?: "item-aligned" | "popper"; endAdornment?: React.ReactNode; inputRef?: React.RefObject; padding?: boolean; invisible?: boolean; children?: React.ReactNode; dataType?: "string" | "number" | "boolean"; portalContainer?: HTMLElement | null; }; export declare const Select: React.ForwardRefExoticComponent & React.RefAttributes>; export type SelectItemProps = { value: T; children?: React.ReactNode; disabled?: boolean; className?: string; }; export declare const SelectItem: React.MemoExoticComponent<(({ value, children, disabled, className }: SelectItemProps) => React.JSX.Element)>; export type SelectGroupProps = { label: React.ReactNode; children: React.ReactNode; className?: string; }; export declare const SelectGroup: React.NamedExoticComponent;