export interface TypeParams { inline?: boolean; } /** * @docsubtitle `type` - вид мессенджера * @doctemplate presets_annotation * * @example * import { presets, YandexConfig } from 'yandex-int/messenger.widget'; * * const config = new YandexConfig(presets.type.external.singleChats()); */ export declare const type: { /** * Мессенджер со списком чатов */ multiChats: (params?: TypeParams | undefined) => Partial; /** * Мессенджер для одного чата */ singleChat: (params?: TypeParams | undefined) => Partial; };