import type { SvelteComponent, ComponentProps } from 'svelte'; export type Variants = Branch>; interface Branch { [n: string]: Partial | Branch; } export {};