import type { AxiosInstance } from 'axios'; export interface HeartbeatCheck { pingUrl: string; name: string; } declare class HeartbeatChecks { api: AxiosInstance; constructor(api: AxiosInstance); get(id: string): Promise>; } export default HeartbeatChecks;