import React from "react"; import "handsontable/dist/handsontable.full.min.css"; interface EXCELSetterProps { value: object[]; onChange: (val: object[]) => void; field: any; } export default class EXCELSetter extends React.PureComponent { static displayName: string; state: { visible: boolean; showNotice: boolean; data: any[]; columnHeaders: any[]; selectedCol: any[]; savedData: any[]; }; hotRef: any; fileRef: any; onOpen: () => void; onClose: () => void; onConfirm: () => void; fileChange: (e: any) => void; readInData: (val: object[]) => any[]; saveData: (selectedCol: any[]) => void; noEmptyJug: () => boolean; renderNotice(): JSX.Element; render(): JSX.Element; } export {};