import { BaseProber, type ProbeResult } from '../'; import type { MariaDB } from '../../../../interfaces/probe'; export declare class MariaDBProber extends BaseProber { probe(incidentRetryAttempt: number): Promise; generateVerboseStartupMessage(): string; private getConnectionDetails; } type ProbeMariaDBParams = { id: string; checkOrder: number; mariaDB?: MariaDB[]; mysql?: MariaDB[]; }; export declare function probeMariaDB({ id, checkOrder, mariaDB, mysql, }: ProbeMariaDBParams): Promise; export {};