import type { Snippet } from 'svelte'; export type BrandMarkSize = 'sm' | 'md' | 'lg' | 'xl'; interface BrandMarkProps { /** 1–2 letter mark, or provide children / logoSrc for a custom glyph */ mark?: string; name?: string; /** Official logo image URL (SVG/PNG). Replaces initials / children. */ logoSrc?: string; size?: BrandMarkSize; showName?: boolean; class?: string; children?: Snippet; } declare const BrandMark: import("svelte").Component; type BrandMark = ReturnType; export default BrandMark;