import { FeatureLayerJSON } from '../../types'; /** * Checks if all provided feature layers support the field description property. If any * of the feature layers do not support it, the function returns false. * * @param featureLayers - An array of JSON objects representing the feature layers to check. * @returns boolean - True if all feature layers support the field description property, false otherwise. */ export declare const checkSupportsFieldDescriptionProperty: (featureLayers: FeatureLayerJSON[]) => boolean;