import React, { PureComponent } from 'react'; export interface CSVUploadProps { onChange: (event: any) => void; onRemove?: (event: any) => void; } declare class CSVUpload extends PureComponent { handleRemove: (callback: (event: any) => void) => (event: any) => void; render(): React.JSX.Element; } export default CSVUpload;