// Squelch warnings of image imports from your assets dir declare module '$lib/assets/*' { const meta export default meta } // Svelte 5 runes - compiler macros declare const $props: () => T; declare const $state: (initial: T) => T; declare const $derived: (fn: () => T) => T; declare const $effect: (fn: () => void | (() => void)) => void; declare const $bindable: (initial?: T) => T;