export interface ServerInformation {
	ip: string;
	port: number;
	debug: {
		ping: boolean;
		query: boolean;
		srv: boolean;
		querymismatch: boolean;
		ipinsrv: boolean;
		cnameinsrv: boolean;
		animatedmotd: boolean;
		cachetime: number;
		apiversion: number;
	};
	motd: {
		raw: Array<string>;
		clean: Array<string>;
		html: Array<string>;
	};
	players: {
		online: number;
		max: number;
		listUsers: string | undefined;
	};
	version: string;
	online: boolean;
	protocol: number;
	hostname: string;
	icon: Buffer;
	software: string | undefined;
}
