import { NodeChild, NodeParent } from "./Node"; export interface NodeBase { type: "Psd" | "Group" | "Layer"; name: string; parent?: Parent; children?: Child[]; opacity: number; composedOpacity: number; addChild?: (node: Child) => void; hasChildren?: () => boolean; freeze?: () => void; } //# sourceMappingURL=NodeBase.d.ts.map