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['menuPosition']; placeholder?: string; } export declare const FieldSelector: React.FunctionComponent; export {};