export interface ChangedItem {
    path: string;
    content: number[];
    isPathDeleted: boolean;
    isPathAdded: boolean;
    isFileStaged: boolean;
    isDirectory: boolean;
    updatedPath: string | null;
}
//# sourceMappingURL=changed-item.model.d.ts.map