import * as ol from 'openlayers'; import { DataSource } from './datasource'; import { FeatureDataSourceOptions } from './feature-datasource.interface'; export declare class FeatureDataSource extends DataSource { options: FeatureDataSourceOptions; ol: ol.source.Vector; protected createOlSource(): ol.source.Vector; protected generateId(): string; private getSourceFormatFromOptions(options); }