UNPKG

442 BTypeScriptView Raw
1import * as React from 'react';
2import { BsPrefixOnlyProps, BsPrefixRefForwardingComponent } from './helpers';
3export interface FormSelectProps extends BsPrefixOnlyProps, Omit<React.SelectHTMLAttributes<HTMLSelectElement>, 'size'> {
4 htmlSize?: number;
5 size?: 'sm' | 'lg';
6 isValid?: boolean;
7 isInvalid?: boolean;
8}
9declare const FormSelect: BsPrefixRefForwardingComponent<'select', FormSelectProps>;
10export default FormSelect;