UNPKG

354 BTypeScriptView Raw
1import * as React from 'react';
2
3import { BsPrefixComponent } from './helpers';
4
5export interface FormFileInputProps {
6 id?: string;
7 isValid?: boolean;
8 isInvalid?: boolean;
9 lang?: string;
10}
11
12declare class FormFileInput<
13 As extends React.ElementType = 'input'
14> extends BsPrefixComponent<As, FormFileInputProps> {}
15
16export default FormFileInput;