import * as React from 'react';
import { AdaptableApi } from '../../Api/AdaptableApi';
import { AdaptableModule } from '../../AdaptableState/Common/Types';
import { ColumnScope } from '../../AdaptableState/Common/ColumnScope';
interface EditorInputProps {
    type: 'boolean' | 'scalar' | 'aggregatedScalar' | 'cumulativeAggregatedScalar' | 'quantileAggregatedScalar';
    module: AdaptableModule;
    value: string;
    onChange: (value: string) => void;
    api: AdaptableApi;
    testData: any;
    isFullExpression?: boolean;
    columnScope?: ColumnScope;
}
declare function EditorInput(props: EditorInputProps): React.JSX.Element;
export default EditorInput;
