import type { CliContext } from '../../context/create-context.js'; import { SharedDockerService } from '../docker-service.js'; import type { ServiceStatus } from '../service.js'; export declare class MysqlService extends SharedDockerService { static readonly container = "stamhoofd-mysql"; readonly key = "mysql"; readonly name = "MySQL"; getContainer(): string; getDetail(context: CliContext): string; getLogin(): string; getDockerArgs(context: CliContext): string[]; beforeRun(context: CliContext): Promise; afterRun(context: CliContext): Promise; alreadyRunningMessage(status: ServiceStatus): string; startedMessage(context: CliContext): string; static dockerArgs(port: number): string[]; } export declare const mysqlService: MysqlService; //# sourceMappingURL=mysql-service.d.ts.map