import { Translation } from './translation';
export interface TranslationResponse {
    /**
     * The translated texts.
     * @type {Translation[]}
     */
    translations: Translation[];
}
