import type { NotesChannel } from './index'; import { User } from './User'; export declare class ClientUser extends User { notes: NotesChannel | null; setUsername(username: string, password?: string): Promise; setStatus(status: { text?: string; presence?: 'Online' | 'Idle' | 'Busy' | 'Invisible'; }): Promise; }