/**
 * Copyright Super iPaaS Integration LLC, an IBM Company 2024
 */
import { TreeEntry } from "./tree-entry.model.js";
import { VCSFileInfo } from "../../vcs/models/vcs-file-info.model.js";
export interface OutlineCodeViewNode {
    name: string;
    id: string;
    label: string;
    path?: FileSystemFileHandle | TreeEntry | VCSFileInfo;
    type: string;
    children?: OutlineCodeViewNode[];
    method?: string;
    isLink?: boolean;
    isHighLight?: boolean;
    isContent?: boolean;
    isOpen?: boolean;
}
//# sourceMappingURL=outline-code-view.model.d.ts.map