import type { AxiosInstance } from 'axios'; export interface CheckGroup { id: number; name: string; activated: boolean; muted: boolean; locations: string[]; tags: string[]; concurrency: number; } declare class CheckGroups { api: AxiosInstance; constructor(api: AxiosInstance); getAll(): Promise>; } export default CheckGroups;