import { Quote, AttachmentPointer, Preview, } from '../../ts/session/messages/outgoing'; declare class LokiAppDotNetServerAPI { constructor(ourKey: string, url: string); findOrCreateChannel( api: LokiPublicChatFactoryAPI, channelId: number, conversationId: string ): Promise; } export interface LokiPublicChannelAPI { sendMessage( data: { quote?: Quote; attachments: Array; preview: Array; body?: string; }, timestamp: number ): Promise; } export default LokiAppDotNetServerAPI;