12/**3* IsVNC checks if a host is running a VNC server.4* It returns a boolean indicating if the host is running a VNC server5* and the banner of the VNC server.6* @example7* ```javascript8* const vnc = require('nuclei/vnc');9* const isVNC = vnc.IsVNC('acme.com', 5900);10* log(toJSON(isVNC));11* ```12*/13export function IsVNC(host: string, port: number): IsVNCResponse | null {14return null;15}16171819/**20* IsVNCResponse is the response from the IsVNC function.21* @example22* ```javascript23* const vnc = require('nuclei/vnc');24* const isVNC = vnc.IsVNC('acme.com', 5900);25* log(toJSON(isVNC));26* ```27*/28export interface IsVNCResponse {2930IsVNC?: boolean,3132Banner?: string,33}34353637