📄 FormSelect.d.ts
/home/palash/git/site/node_modules/react-bootstrap/esm/FormSelect.d.ts
Language: ts • Lines: 10
import * as React from 'react';
import { BsPrefixOnlyProps, BsPrefixRefForwardingComponent } from './helpers';
export interface FormSelectProps extends BsPrefixOnlyProps, Omit<React.SelectHTMLAttributes<HTMLSelectElement>, 'size'> {
    htmlSize?: number;
    size?: 'sm' | 'lg';
    isValid?: boolean;
    isInvalid?: boolean;
}
declare const FormSelect: BsPrefixRefForwardingComponent<'select', FormSelectProps>;
export default FormSelect;