// Type definitions for react-file-reader-input // Project: https://www.npmjs.com/package/react-file-reader-input // Definitions by: Dmitry Rogozhny // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// declare module "react-file-reader-input" { interface FileInputProps { as?: string; onChange?: (event: React.SyntheticEvent, results: any) => void; } class FileInput extends React.Component { } export = FileInput; }