import * as React from "react"; export interface InlineEditableTextInputProps { value: string; onChange: (updatedValue: string) => void; setActiveCellEditing: (isEditing: boolean) => void; rowIndex: number; columnIndex: number; isReadOnly: boolean; } export declare const InlineEditableTextInput: React.FunctionComponent; //# sourceMappingURL=InlineEditableTextInput.d.ts.map