import { GenericContainer, StartedNetwork, AbstractStartedContainer } from 'testcontainers'; import { StartedNativeChainContainer } from '../NativeChainContainer'; export declare class WhaleApiContainer extends GenericContainer { constructor(image?: string); withNativeChain(container: StartedNativeChainContainer, network: StartedNetwork): this; start(): Promise; } export declare class StartedWhaleApiContainer extends AbstractStartedContainer { getContainerPort(): number; getPort(): number; getEndpoint(): string; getWhaleApiClientOptions(): { url: string; version: 'v0'; network: 'regtest'; }; waitForIndexedBlockHeight(height: number, timeout?: number): Promise; } //# sourceMappingURL=WhaleApiContainer.d.ts.map