import * as React from "react"; import { ISheetContents } from "trc-sheet/sheetContents"; interface IProps { onSubmit?: (data: ISheetContents) => Promise; } interface IState { rawText: string; data: ISheetContents; _recIdMatch?: number; _recIdTotal?: number; posting?: boolean; posted?: string; postedVerNumber?: string; } export declare class CsvMatchInput extends React.Component { static contextType: React.Context; constructor(props: any); private onSubmit; private onValidate; private renderStats; render(): JSX.Element; } export {};