/** * Returns an array of all possible feature layer field value types. * * @returns {FeatureLayerFieldValueType[]} An array of feature layer field value types. * * @see https://doc.arcgis.com/en/arcgis-online/manage-data/describe-fields.htm * @see https://www.esri.com/arcgis-blog/products/arcgis-online/data-management/describing-layer-attributes-with-field-descriptions-march-2019 */ import { FeatureLayerFieldValueType } from '../../types'; export declare const getFeatureLayerFieldValueTypes: () => FeatureLayerFieldValueType[];