import { SourceInterface, SourceService, AppInterface } from "..";
export declare class SourceAdapterContext {
    private service;
    private app;
    constructor(service: SourceService, app: AppInterface);
    setLoading(value: boolean): void;
    setSources(sources: Array<SourceInterface>): void;
    updateSources(id: string, source: SourceInterface): void;
}
