import { Style } from "ol/style"; import { baseLayer } from "../../base/baseLayer"; import { MirageMap } from "../XMap"; export declare class PbfLayer extends baseLayer { private _source; private isLoading; queryParams: { onlyField: string; }; DefaultStyle: Style; highlightedFeature: null; constructor(layerid: string, options: { url: string; zIndex: number; featureStyle: [{ propertiesName: string; propertiesValue: string; fillColor: string; strokeColor: string; strokeWidth: number; }]; }); tileUrlFunction(tileCoord: any, url: any): any; appendTo(map: MirageMap): void; createDefaultStyle(feature: any): Style; createHighlightStyle(feature: any): Style; createDynamicStyle(): (feature: any) => Style; }