import { IMessageAPI, INewUserAPI, IUserResultAPI } from './interfaces'; /** Create a user and catch the error if they exist already */ export declare function createUser(user: INewUserAPI): Promise; /** Send message from mock user to channel for tests to listen and respond */ export declare function sendFromUser(payload: any): Promise; /** Get user data, to check if they're online or have attributes set */ export declare function getUserData(payload: { userId?: string; username?: string; }): Promise; /** Initialise testing instance with the required users for SDK/bot tests */ export declare function setup(): Promise;