import { SelectHTMLAttributes, forwardRef } from 'react';
import classNames from 'classnames';
import { inputClassNames } from '../input/input';
/* eslint-disable-next-line */
export interface SelectProps extends SelectHTMLAttributes {
hasError?: boolean;
className?: string;
value?: string | number;
children?: React.ReactNode;
}
export const Select = forwardRef(
(props, ref) => (
)
);