import { T } from "@simplex-chat/types"; import { BotAddressSettings } from "./api"; export declare function chatInfoRef(cInfo: T.ChatInfo): T.ChatRef | undefined; export declare function chatInfoName(cInfo: T.ChatInfo): string; export declare function senderName(cInfo: T.ChatInfo, chatDir: T.CIDirection): string; export declare function contactAddressStr(link: T.CreatedConnLink): string; export declare function botAddressSettings({ addressSettings }: T.UserContactLink): BotAddressSettings; export declare function fromLocalProfile({ displayName, fullName, shortDescr, image, contactLink, preferences, peerType }: T.LocalProfile): T.Profile; export declare function ciContentText({ content }: T.ChatItem): string | undefined; export interface BotCommand { keyword: string; params: string; } export declare function ciBotCommand(chatItem: T.ChatItem): BotCommand | undefined; export declare function reactionText(reaction: T.ACIReaction): string;