import * as react_jsx_runtime from 'react/jsx-runtime';
import { Cell } from '@tanstack/react-table';

interface EditableTextInputProps<TData> {
    cell: Cell<TData, unknown>;
    onCancel: () => void;
}
declare function EditableTextInput<TData, IdType>(props: EditableTextInputProps<TData>): react_jsx_runtime.JSX.Element;

export { EditableTextInput as default };
