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