import { InteractionInterceptor } from "./InteractionInterceptor"; import { ConvInteraction } from "@leftshiftone/gaia-sdk/dist/mqtt/MqttSensorQueue"; /** * It enriches the attributes of all convey interactions with a specific language * * @constructor language Code of language ISO 639-1 (format: "de","en","es"). Also locales such as en_US or en-US are allowed */ export declare class LanguageInteractionInterceptor implements InteractionInterceptor { private language; constructor(language: string); execute(interaction: ConvInteraction): ConvInteraction; }