export default EditableRow;
declare function EditableRow(props: any): JSX.Element;
declare namespace EditableRow {
    namespace propTypes {
        const rowData: PropTypes.Validator<object>;
        const editItems: PropTypes.Validator<any[]>;
        const displayItems: PropTypes.Validator<any[]>;
        const onEditSave: PropTypes.Requireable<(...args: any[]) => any>;
        const onDeleteSave: PropTypes.Requireable<(...args: any[]) => any>;
    }
}
import PropTypes from "prop-types";
