import React from 'react'; import { InputProps } from '../../../Input'; export interface EditCellInputProps extends Omit { value: string | number; onValueChange: (event: React.ChangeEvent, value: string | number) => Promise; } export declare const EditCellInput: (props: EditCellInputProps) => import("react/jsx-runtime").JSX.Element;