import * as React from 'react'; import { AdaptableColumnDataType } from '../../types'; export declare const DataTableEditor: ({ fields, dataFormatter, data: initialData, type, labels, }: { fields: { label: string; value: string; dataType: AdaptableColumnDataType; readOnly?: boolean; }[]; type: string; dataFormatter: (field: string) => string; data: any; labels?: { showIds?: string; filterPlaceholder?: string; }; }) => React.JSX.Element;