import { getIpList } from '../../utils';
declare const _default: {
    getHealthStatus: () => {
        cpu: any;
        memory: any;
        os: {
            uptime: number;
            type: string;
            release: string;
            hostname: string;
            arch: string;
            platform: NodeJS.Platform;
            user: {};
        };
        process: {
            pid: number;
            memory: NodeJS.MemoryUsage;
            uptime: number;
            argv: string[];
        };
        client: {
            type: string;
            version: string;
            langVersionL: string;
        };
        net: {
            ip: string[];
        };
        time: {
            now: number;
            iso: string;
            utc: string;
        };
    };
    getClientInfo: () => {
        type: string;
        version: string;
        langVersionL: string;
    };
    getCpuInfo: () => any;
    getDateTimeInfo: () => {
        now: number;
        iso: string;
        utc: string;
    };
    getMemoryInfo: () => any;
    getNetworkInterfacesInfo: () => {
        ip: string[];
    };
    getIpList: typeof getIpList;
    getProcessInfo: () => {
        pid: number;
        memory: NodeJS.MemoryUsage;
        uptime: number;
        argv: string[];
    };
};
export default _default;
