import { DeveloperProvider, PrivateNetworkSettings } from '@neo-one/client-common'; /** * Client which controls a development network. */ export declare class DeveloperClient { private readonly developerProvider; private mutableRunConsensusNow; constructor(developerProvider: DeveloperProvider); /** * Trigger consensus to run immediately. */ runConsensusNow(): Promise; /** * Update settings for the private network. */ updateSettings(options: Partial): Promise; /** * Get the current settings of the private network. */ getSettings(): Promise; /** * Fast forward the local network by `seconds` into the future. */ fastForwardOffset(seconds: number): Promise; /** * Fast forward to a particular unix timestamp in the future. */ fastForwardToTime(seconds: number): Promise; /** * Reset the local network to it's initial state starting at the genesis block. */ reset(): Promise; private runConsensusNowInternal; }