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; } export declare function Select({ size, error, className, ref, children, ...rest }: SelectProps): import("react").JSX.Element; export {}; //# sourceMappingURL=Select.d.ts.map