react-bootstrap-v5
Version:
Bootstrap 4 components built with React
10 lines (9 loc) • 366 B
TypeScript
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
export interface FormFileInputProps extends BsPrefixProps {
id?: string;
isValid?: boolean;
isInvalid?: boolean;
}
declare type FormFileInput = BsPrefixRefForwardingComponent<'input', FormFileInputProps>;
declare const FormFileInput: FormFileInput;
export default FormFileInput;