import type ApolloClient from "apollo-client"; import { ISaveTranslatableCollectionGateway } from "./ISaveTranslatableCollectionGateway"; import { TranslatableCollectionInputDto } from "./TranslatableCollectionInputDto"; export declare class SaveTranslatableCollectionGqlGateway implements ISaveTranslatableCollectionGateway { private client; constructor(client: ApolloClient); execute(translatableCollectionDto: TranslatableCollectionInputDto): Promise; }