import { Pool } from 'pg';
import { StartedTestContainer } from 'testcontainers/dist/test-container';
declare class TimescaleDBContainer {
    private readonly container;
    private readonly TIMESCALE_IMAGE;
    constructor();
    start: (exposedPort?: number) => Promise<{
        container: StartedTestContainer;
        pgPool: Pool;
    }>;
}
export default TimescaleDBContainer;
