export interface SelfInfo {
    username: string;
    email: string;
    lastName: string;
    firstName: string;
    birthday: string;
    onlineStatus: string;
    address: string;
    personalWebsite: string;
    hobbies: string;
    friends: string;
    uid: string;
    avatar: string;
    currentRoom: string;
    phone: string;
}
/**
 * 解析自身信息
 * @param message 消息
 * @returns {SelfInfo | null}
 */
export declare const parseSelfInfo: (message: string) => SelfInfo | null;
