/**
 * Copyright Super iPaaS Integration LLC, an IBM Company 2024
*/
export interface TreeEntryResponse {
    path: string;
    mode: string;
    type: 'blob' | 'tree';
    sha: string;
    size?: number;
    url: string;
}
//# sourceMappingURL=tree-entry-response.model.d.ts.map