import { GenericCellEditorProps } from '../GridCell';
import { GridFormTextInputProps } from '../gridForm/GridFormTextInput';
import { GenericCellColDef } from '../gridRender/GridRenderGenericCell';
import { ColDefT, GridBaseRow } from '../types';
export declare const GridPopoverTextInput: <TData extends GridBaseRow, TValue = any>(colDef: GenericCellColDef<TData, TValue>, params: GenericCellEditorProps<GridFormTextInputProps<TData>>) => ColDefT<TData, TValue>;
