import { XmlDocument } from '@rgrove/parse-xml'; import { WfsFeatureTypeFull, WfsFeatureTypePropsDetails, WfsFeatureWithProps, WfsVersion } from './model.js'; /** * Returns an array of features with their id and properties */ export declare function parseFeatureProps(getFeaturesDoc: XmlDocument, featureTypeFull: WfsFeatureTypeFull, serviceVersion: WfsVersion): WfsFeatureWithProps[]; /** * Returns an array of features with their id and properties */ export declare function parseFeaturePropsGeojson(getFeaturesGeojson: Record): WfsFeatureWithProps[]; /** * Returns details regarding the features prop values */ export declare function computeFeaturePropsDetails(featuresWithProps: WfsFeatureWithProps[]): WfsFeatureTypePropsDetails; //# sourceMappingURL=featureprops.d.ts.map