import { AxiosResponse } from 'axios'; export declare class GetSyncStatusResponse { private response; private readonly dto; constructor(response: AxiosResponse); toModel(): ProjectSyncStatus; } export declare class ProjectSyncStatus { commitHash?: string; syncDate?: string; syncStatus?: string; message?: string; constructor(data: any); }