Files
est-frame/node_modules/react-bootstrap/cjs/FormSelect.d.ts
2025-10-22 05:38:27 +00:00

11 lines
442 B
TypeScript
Executable File

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;