import { Context } from '../Types'; export declare const SERVER_CONTEXT: Context; export declare function isServerContext(): boolean; export declare function executeInServerContext(func: Function): any; export declare function getServerInfo(): { nodeVersion: string; platform: string; }; export declare function getEnvironmentVariables(): { [key: string]: string | undefined; }; export declare function getServerMemoryUsage(): { rss: number; heapTotal: number; heapUsed: number; external: number; }; export declare function getServerUptime(): number; export declare function isProductionMode(): boolean; export declare function getCPUUsage(): { user: number; system: number; }; export declare function getServerArguments(): string[]; export declare function exitServer(code?: number): void;