import AuthService from "./AuthService"; export default class APIService { private authService; private baseUrl; private readonly axios; constructor(authService: AuthService); get(path: string, queryParams?: Record): Promise; post(path: string, payload?: P): Promise; private setupAxios; private convertAxiosErrorToHMS; }