import { Message, type MessageInternalConfig, type MessageInternalContents } from '../../Message'; interface Reply331NoTopicFields { me: string; channel: string; suffix: string; } export interface Reply331NoTopic extends Reply331NoTopicFields { } export declare class Reply331NoTopic extends Message { static readonly COMMAND = "331"; constructor(command: string, contents?: MessageInternalContents, config?: MessageInternalConfig); } export {};