GoScrobble/web/node_modules/react-bootstrap/cjs/FormSelect.d.ts

11 lines
422 B
TypeScript

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