type Props = { name?: string; src?: string; alt?: string; /** Preset (sm 28 / md 36 / lg 48) or an explicit pixel size. */ size?: 'sm' | 'md' | 'lg' | number; shape?: 'circle' | 'square'; status?: 'online' | 'offline' | 'busy' | 'away'; /** Override the hash-derived fallback colour (any CSS colour). */ color?: string; }; declare const SvAvatar: import("svelte").Component; type SvAvatar = ReturnType; export default SvAvatar;