export declare const CRLF = "\r\n"; declare const commandActions: { getGroup: { command: (group: string) => string; multiline: boolean; success: number; }; getArticleHead: { command: (messageID: string) => string; multiline: boolean; success: number; }; getArticleBody: { command: (messageID: string) => string; multiline: boolean; success: number; }; listGroupArticles: { command: (group: string) => string; multiline: boolean; success: number; }; overRange: { command: (from: number, to: number) => string; multiline: boolean; success: number; }; nextArticle: { command: string; multiline: boolean; success: number; }; prevArticle: { command: string; multiline: boolean; success: number; }; postArticleFirstPhase: { command: string; multiline: boolean; success: number; }; postArticleSecondPhase: { command: (articleToBePosted: string) => string; multiline: boolean; success: number; }; listGroups: { command: string; multiline: boolean; success: number; }; quit: { command: string; multiline: boolean; success: number; }; getOverview: { command: string; multiline: boolean; success: number; }; listArticles: { command: (from: number, to: number) => string; multiline: boolean; success: number; }; listNewArticles: { command: (wildmat: string, dateTime: string) => string; multiline: boolean; success: number; }; listNewGroups: { command: (wildmat: string, dateTime: string) => string; multiline: boolean; success: number; }; getArticleInformation: { command: (numberID: number) => string; multiline: boolean; success: number; }; checkArticleExistence: { command: (messageID: string) => string; multiline: boolean; success: number; }; }; export default commandActions;