/// <reference types="express" />
import { Request } from "@golemio/core/dist/shared/express";
export default class OpenDataHelper {
    static parseOpenDataParam(req: Request): boolean;
    static getIntersectionOfAllowedSources(requestedSources: string[] | undefined, accessibleSources: string[]): string[];
}
