import * as React from 'react';
import { SelectProps } from '../../../components/Select';
import { AdaptableColumnDataType } from '../../../types';
interface FieldSelectorProps {
    value: string;
    onChange: (fieldExp: string) => void;
    type?: AdaptableColumnDataType;
    disabled?: boolean;
    menuPosition?: SelectProps<any>['menuPosition'];
    placeholder?: string;
}
export declare const FieldSelector: React.FunctionComponent<FieldSelectorProps>;
export {};
