/// <reference types="hoist-non-react-statics" />
import React from 'react';
import { IChartDataset } from '@qn-pandora/app-sdk';
import BasicComponent from '../../../Base/BasicComponent';
import { ISingleStyleService } from '../../../../base-pandora-visualization/services/chart-style/charts/single/base';
export interface IDisplayFieldProps {
    chartStyleService: ISingleStyleService;
    dataset: IChartDataset;
    getPopupContainer?: () => HTMLElement;
}
export declare class DisplayField extends BasicComponent<IDisplayFieldProps, {}> {
    handleConfigChange(value: any, key: string): void;
    handleAddDisplayField(): void;
    handleDeleteField(index: number): void;
    handleValueChange(value: any, index: number, key: string): void;
    handleColChange(keys: string[]): void;
    render(): React.JSX.Element;
}
declare const _default: React.ComponentClass<IDisplayFieldProps, any> & import("hoist-non-react-statics").NonReactStatics<(React.ComponentClass<IDisplayFieldProps, any> & typeof DisplayField) | (React.FunctionComponent<IDisplayFieldProps> & typeof DisplayField), {}>;
export default _default;
