import { ISaveTranslatedCollectionRepository } from "./ISaveTranslatedCollectionRepository"; import { ISaveTranslatedCollectionGateway } from "./ISaveTranslatedCollectionGateway"; import { TranslatedCollection } from "../.."; import { ListCache } from "../../ListCache"; export declare class SaveTranslatedCollectionRepository implements ISaveTranslatedCollectionRepository { private readonly gateway; private cache; private loading; constructor(gateway: ISaveTranslatedCollectionGateway, cache: ListCache); getLoading(): boolean; execute(translatedCollection: TranslatedCollection): Promise; }