export interface BotConfigResponse { data: { bot: { userId: string; localpart: string; displayName: string; homeServerName?: string; }; homeserverUrl: string; autojoin: boolean; encryption: boolean; }; } export declare function invite(roomId: string, botUrl: string, homeServerUrl: string, accessToken: string): Promise; export declare function getConfig(botUrl: string): Promise;