export declare const prettyPrint: (data: Object) => string; export interface ServerMetadata { /** * The name of the minecraft server */ name: string; tag: string; description: string; /** * the command that starts the server. This runs inside the server folder */ command: string; /** * The directory where the server files are */ directory: string; logs?: boolean; backups?: { backupLimit: number; backupInterval: string | number; }; advanced?: { welcomeMsg?: string; }; } //# sourceMappingURL=helpers.d.ts.map