import { IIRCLine } from '../types/irc.interfaces'; export interface WhoResponse { channel?: string; username?: string; hostname?: string; server?: string; nickname?: string; modes?: string[]; oper?: boolean; hops?: number; realname?: string; } export declare const parseWho: (lines: IIRCLine[]) => WhoResponse[];