type $$ComponentProps = { name?: string; email?: string; role?: string; plan?: string; status?: 'online' | 'offline' | 'busy' | 'away' | null; size?: 'sm' | 'md' | 'lg'; showMeta?: boolean; }; declare const UserMenuStory: import("svelte").Component<$$ComponentProps, {}, "">; type UserMenuStory = ReturnType; export default UserMenuStory;