import * as React from "react"; import { ISheetContents } from "trc-sheet/sheetContents"; interface IProps { onValidate?: (data: ISheetContents) => void; onSubmit?: (data: ISheetContents) => void; } interface IState { rawText: string; data: ISheetContents; } export declare class CsvInput extends React.Component { constructor(props: any); static parseCsv(text: string): ISheetContents; private onParse; private onBack; private apply; private onSubmit; private handleChange; render(): JSX.Element; } export {};