import { FeatureLayerFieldIndex } from '../../types'; /** * This function filters out system field indexes from the provided array of field indexes. * @param fieldIndexes Field indexes array from Feature Layer JSON * @returns Non-system field indexes */ export declare const getNonSystemAttributeFieldIndexes: (fieldIndexes: FeatureLayerFieldIndex[]) => FeatureLayerFieldIndex[];