import type { AxiosInstance } from 'axios'; export interface CheckStatus { name: string; checkId: string; hasFailures: boolean; hasErrors: boolean; isDegraded: boolean; longestRun: number; shortestRun: number; lastRunLocation: string; lastCheckRunId: string; sslDaysRemaining: number | null; created_at: string; updated_at: string | null; } declare class CheckStatuses { api: AxiosInstance; constructor(api: AxiosInstance); getAll(): Promise>; fetchAll(): Promise; get(checkId: string): Promise>; } export default CheckStatuses;