export default EditableRow;
declare class EditableRow extends React.Component<any, any, any> {
    static propTypes: {
        newOption: PropTypes.Requireable<string>;
        onApprove: PropTypes.Requireable<(...args: any[]) => any>;
        onCancel: PropTypes.Requireable<(...args: any[]) => any>;
    };
    constructor(props: any);
    state: {
        newOption: any;
    };
    componentDidMount(): void;
    onApprove: () => void;
    onCancel: () => void;
    render(): React.JSX.Element;
    input: Input | null | undefined;
}
import React from 'react';
import Input from '../../Input';
import PropTypes from 'prop-types';
//# sourceMappingURL=EditableRow.d.ts.map