import * as React from "react"; import * as sheetContents from "trc-sheet/sheetContents"; interface IProps { data: sheetContents.ISheetContents; Names: string[]; Keys: string[]; initialValues?: { [dynamic: string]: string; }; onSubmit?: (record: any) => void; onClear?: () => void; onChange?: (key: string, value: string) => void; submitLabel?: string; } interface IState { Vals: any; activeInputKey: string; dataListItems: string[]; } export declare class FieldInputs extends React.Component { constructor(props: any); handleClear(): void; handleSubmit(event: any): void; private updateFieldState; render(): JSX.Element; } export {};