export interface Props { /** Display name used for initials fallback. */ name: string; /** URL for the avatar image. */ avatarUrl?: string; /** Online presence status. */ onlineStatus?: 'online' | 'away' | 'dnd' | 'offline'; /** Avatar size. */ size?: 'sm' | 'md' | 'lg'; } declare const Avatar: import("svelte").Component; type Avatar = ReturnType; export default Avatar; //# sourceMappingURL=Avatar.svelte.d.ts.map