import type { SelectHTMLAttributes, Ref } from "react"; type Size = 24 | 32 | 40 | 48; export interface SelectProps extends SelectHTMLAttributes { /** * Height in px (24 | 32 | 40 | 48). Replaces the native `size` attribute * (which sets the visible option-row count on a listbox-style `` element. */ ref?: Ref; } /** Styled native `