import { StatusApi, NetworkConfigurationResponse, NetworkStatusResponse } from "../generated"; /** * Wraps the lower-level `StatusApi` - which can be accessed with `innerClient` for advanced use cases. */ export declare class Status { innerClient: StatusApi; logicalNetworkName: string; constructor(innerClient: StatusApi, logicalNetworkName: string); getNetworkConfiguration(): Promise; getNetworkStatus(): Promise; }