import { CommandsBase } from './CommandsBase'; import { UUID } from '../UUID'; import { ChatType } from '../../enums/ChatType'; export declare class CommunicationsCommands extends CommandsBase { sendInstantMessage(to: UUID | string, message: string): Promise; nearbyChat(message: string, type: ChatType, channel?: number): Promise; say(message: string, channel?: number): Promise; whisper(message: string, channel?: number): Promise; shout(message: string, channel?: number): Promise; startTypingLocal(): Promise; stopTypingLocal(): Promise; startTypingIM(to: UUID | string): Promise; stopTypingIM(to: UUID | string): Promise; typeInstantMessage(to: UUID | string, message: string, thinkingTime?: number, charactersPerSecond?: number): Promise; typeLocalMessage(message: string, thinkingTime?: number, charactersPerSecond?: number): Promise; }