import { VCSAssets } from "./vcs-assets.model.js";
export type VCSProject = {
    isLoading: boolean;
    name: string;
    description: string;
    lastUpdated: number;
    tags: string[];
    repoNameWithOwner: string;
    rootDirectoryAlias: string;
    assets: VCSAssets;
    isPinned: boolean;
    isVCSProject: boolean;
};
//# sourceMappingURL=vcs-project.model.d.ts.map