import React from 'react'; import 'jb-file-input'; import { JBFileInputWebComponent } from 'jb-file-input'; import { EventProps } from './events-hook.js'; declare global { namespace JSX { interface IntrinsicElements { 'jb-file-input': JBFileInputType; } interface JBFileInputType extends React.DetailedHTMLProps, JBFileInputWebComponent> { class?: string; label?: string; name?: string; } } } export type JBFileInputEventType = T & { target: JBFileInputWebComponent; }; export declare const JBFileInput: React.ForwardRefExoticComponent>; export type Props = EventProps & { className?: string; acceptTypes?: string; placeholderTitle?: string; required?: boolean; };