// Type definitions for react-file-input // Project: https://www.npmjs.com/package/react-file-input // Definitions by: Dmitry Rogozhny // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.8 /// declare module "react-file-input" { interface FileInputProps { name: string; className: string; accept: string; placeholder: string; disabled?: boolean; onChange: (event: React.SyntheticEvent) => void; } class FileInput extends React.Component { } export = FileInput; }