import { Node } from "../html/ast"; import { Sheet } from "../css/ast"; export declare enum DependencyContentKind { Node = "Node", Stylsheet = "Stylesheet" } export declare type BaeDependencyContent = { contentKind: TKind; }; export declare type DependencyNodeContent = BaeDependencyContent & Node; export declare type DependencyStyleSheetContent = BaeDependencyContent & Sheet; export declare type DependencyContent = DependencyNodeContent | DependencyStyleSheetContent; export declare type Dependency = { uri: string; dependencies: Record; dependencyUriMaps: Record; content: DependencyContent; }; export declare type DependencyGraph = Record;