/** * UserPresence - Online/offline status indicator with optional label */ export interface Props { /** Current presence status */ status: 'online' | 'away' | 'dnd' | 'offline'; /** Whether to show a text label next to the dot */ showLabel?: boolean; } declare const UserPresence: import("svelte").Component; type UserPresence = ReturnType; export default UserPresence; //# sourceMappingURL=UserPresence.svelte.d.ts.map