import { BaserowClient } from "./baserow-client"; import type { EmailTesterRequest, EmailTesterResponse, FullHealthCheck } from "../types/health"; /** * Operations for checking Baserow server health. */ export declare class HealthOperations { private client; constructor(client: BaserowClient); /** * Get full health check for the Baserow instance */ getFullHealthCheck(): Promise; /** * Test email configuration */ testEmail(request: EmailTesterRequest): Promise; /** * Check celery queue size */ checkCeleryQueueSize(queues?: string[]): Promise; /** * @deprecated Use getFullHealthCheck instead. * This method is kept for backward compatibility. */ getHealthCheck(): Promise; /** * @deprecated This endpoint doesn't exist in the OpenAPI specification. */ checkMigrations(): Promise<{ migration_migrations_applied: boolean; }>; }