import React from 'react'; import { BsPrefixAndClassNameOnlyProps, BsPrefixRefForwardingComponent } from './helpers'; export interface FormSelectProps extends React.PropsWithChildren, React.HTMLAttributes { htmlSize?: number; size?: 'sm' | 'lg'; isValid?: boolean; isInvalid?: boolean; } declare const FormSelect: BsPrefixRefForwardingComponent<'select', FormSelectProps>; export default FormSelect;