export interface IComputerInfo {
    hostname: string;
    localIP?: string;
    externalIP?: string;
}
export declare const computerInfo: (externalIP: string | undefined, cb: (data: IComputerInfo, err?: NodeJS.ErrnoException) => void) => Promise<void>;
