import React from 'react'; import type { ICellEditorParams } from 'ag-grid-community'; import type { ICellEditorReactComp } from 'ag-grid-react'; export interface TextEditorParams { disabled?: boolean; maxLength?: number; isCancelAfterEnd?: (newValue: string, data: TData) => boolean; } declare const _default: React.ForwardRefExoticComponent & TextEditorParams & React.RefAttributes>; export default _default;