import React from 'react'; import Input from './Input'; export interface FileInputProps extends Omit, 'type'> { onChange: (files: FileList | null) => void; } declare const FileInput: (props: FileInputProps) => JSX.Element; export default FileInput;