import type { ComponentPropsWithoutRef } from 'react'; type SelectProps = Omit, 'size'> & { placeholder?: string; }; declare function Select({ children, className, defaultValue, disabled, multiple, placeholder, value, ...props }: SelectProps): import("react/jsx-runtime").JSX.Element; export type { SelectProps }; export default Select;