UNPKG

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