import { HttpClient } from "../http-client.js";
export interface HealthResponse {
    data: any;
    message: string;
    meta: any;
    status: string;
}
export declare class HealthOperations {
    private httpClient;
    constructor(httpClient: HttpClient);
    /**
     * Check the health status of the API service
     * @returns Promise<HealthResponse> - Health check response
     */
    check(): Promise<HealthResponse>;
}
