12/**3* IsPOP3 checks if a host is running a POP3 server.4* @example5* ```javascript6* const pop3 = require('nuclei/pop3');7* const isPOP3 = pop3.IsPOP3('acme.com', 110);8* log(toJSON(isPOP3));9* ```10*/11export function IsPOP3(host: string, port: number): IsPOP3Response | null {12return null;13}14151617/**18* IsPOP3Response is the response from the IsPOP3 function.19* this is returned by IsPOP3 function.20* @example21* ```javascript22* const pop3 = require('nuclei/pop3');23* const isPOP3 = pop3.IsPOP3('acme.com', 110);24* log(toJSON(isPOP3));25* ```26*/27export interface IsPOP3Response {2829IsPOP3?: boolean,3031Banner?: string,32}33343536