import type { HealthzPingResponse } from '../../models/Common';
/**
 * Health check ping endpoint for Runtimes service
 * @param baseUrl - Base URL for the API (defaults to production Runtimes URL)
 * @returns Health check response
 * @throws {Error} If the health check fails
 *
 * @remarks
 * This endpoint provides a basic health check for the Runtimes service.
 * It returns the current status of the service.
 *
 * Expected status codes:
 * - 200: Service is healthy
 */
export declare const ping: (baseUrl?: string) => Promise<HealthzPingResponse>;
