declare enum TestNet { Local = 0, Jungle = 1, HomeBrew = 2 } declare class TestConfig { endpoint: string; blocksBehind: number; expireSeconds: number; searchBlockAhead: number; sleep: boolean; constructor(type: TestNet); } export { TestConfig, TestNet };