import type { CSSProperties, SelectHTMLAttributes } from 'react'; interface SelectProps extends Omit, 'style' | 'onChange'> { onChange?: (element: string) => void; items: T[]; defaultValue?: string | number | undefined; style?: CSSProperties; placeholder?: string; itemValueField?: keyof T; itemTextField?: keyof T; returnValue?: boolean; textRender?: (text: string) => string; } declare const Select: (props: SelectProps & import("react").RefAttributes) => import("react").ReactElement | null; export default Select; //# sourceMappingURL=Select.d.ts.map