import React from 'react';
interface IProps {
    value: string | number | readonly string[] | undefined;
    onChange: (value: string | number | readonly string[] | undefined) => void;
    onKeyDown?: (e: any) => void;
    handleSave?: (e: any) => void;
}
declare const InputDataEdit: (props: IProps) => React.JSX.Element;
export default InputDataEdit;
