import * as React from "react"; import "./uploader.scss"; export interface FileWithPath extends File { readonly path?: string; } interface IAppProps { onUpload: any; onDelete: any; allreadyUploaded?: Array; showPreview?: boolean; type: "image" | "file"; limit: number; } declare const App: React.FunctionComponent; export default App;