import { GatewayStatusResponse, NetworkConfigurationResponse, StatusApi } from "../generated"; export declare class Status { innerClient: StatusApi; constructor(innerClient: StatusApi); /** * Get Gateway API version and current ledger state */ getCurrent(): Promise; /** * Get network identifier, network name and well-known network addresses */ getNetworkConfiguration(): Promise; }