import type ApolloClient from "apollo-client"; import { IGetTranslatedCollectionGateway } from "./IGetTranslatedCollectionGateway"; import { TranslatedCollectionDto } from "./TranslatedCollectionDto"; export declare class GetTranslatedCollectionGateway implements IGetTranslatedCollectionGateway { private client; constructor(client: ApolloClient); execute(collectionId: string, languageCode: string): Promise; }