type ArchNode = { id: string; label: string; sublabel?: string; position: { x: number; y: number; z: number; }; size?: { w: number; h: number; d: number; }; }; type ArchConnection = { from: string; to: string; label?: string; }; interface Props { nodes: ArchNode[]; connections?: ArchConnection[]; title?: string; animate?: boolean; animateOnScroll?: boolean; size?: number; class?: string; } declare const IsometricArchitecture: import("svelte").Component; type IsometricArchitecture = ReturnType; export default IsometricArchitecture;