Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

16 строки
359 B

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