import { ConnectionString } from "connection-string";
export declare class MysqlDocker {
    private readonly connectionString;
    private readonly connection;
    private readonly docker;
    constructor(connectionString?: string, keepAlive?: boolean);
    getConnectionString(): string;
    stop(): Promise<void>;
    start(): Promise<{
        database: ConnectionString;
    }>;
}
