import { ReactElement, SelectHTMLAttributes } from 'react'; import { AffixesProps } from '../InputWrapper/InputWrapper'; export type SelectPrimitiveProps = Omit, 'prefix'> & { children: ReactElement | ReactElement[]; hasError?: boolean; placeholder?: string; isAffix?: boolean; isSuffix?: boolean; } & AffixesProps; declare const Select: import("react").ForwardRefExoticComponent, "prefix"> & { children: ReactElement | ReactElement[]; hasError?: boolean; placeholder?: string; isAffix?: boolean; isSuffix?: boolean; } & AffixesProps & import("react").RefAttributes>; export default Select;