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