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