import { IGreenCenterMeasurement } from "../../../schema-definitions/datasources/greencenter/interfaces/IGreenCenterMeasurement";
import { ISimpleConfig } from "@golemio/core/dist/helpers/configuration/ISimpleConfig";
export declare class GreenCenterMeasurementsDataSourceFactory {
    private readonly config;
    private static readonly DATASOURCE_NAME;
    constructor(config: ISimpleConfig);
    getData(sourceId: string): Promise<IGreenCenterMeasurement[]>;
    private getProtocolStrategy;
}
