/** * CrossPropertyLink - Hermeneutic Navigation Between Properties * * Wraps links to other CREATE Something properties with exit/entry * animations that make the Mode of Being shift visible. * * Usage: * * Visit Canon * */ import type { Snippet } from 'svelte'; type Mode = 'ltd' | 'io' | 'space' | 'agency'; interface Props { href: string; from: Mode; class?: string; children: Snippet; } declare const CrossPropertyLink: import("svelte").Component; type CrossPropertyLink = ReturnType; export default CrossPropertyLink;