UNPKG

427 BTypeScriptView Raw
1import { BsCustomPrefixProps, BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
2export interface FormFileInputProps extends BsPrefixProps, BsCustomPrefixProps {
3 id?: string;
4 isValid?: boolean;
5 isInvalid?: boolean;
6 lang?: string;
7}
8declare type FormFileInput = BsPrefixRefForwardingComponent<'input', FormFileInputProps>;
9declare const FormFileInput: FormFileInput;
10export default FormFileInput;