import { LanguagePackString } from '@airgram-dev/core'; /** Some language pack strings have been updated */ export declare class UpdateLanguagePackStringsBaseModel { _: 'updateLanguagePackStrings'; /** Localization target to which the language pack belongs */ localizationTarget: string; /** Identifier of the updated language pack */ languagePackId: string; /** List of changed language pack strings */ strings: LanguagePackString[]; }