import type { UserAnalytics } from './types.js'; interface Props { /** Aggregated user analytics data */ analytics: UserAnalytics | null; /** Whether data is currently loading */ loading?: boolean; /** Whether user has opted out of analytics */ optedOut?: boolean; } declare const UserInteractionsPanel: import("svelte").Component; type UserInteractionsPanel = ReturnType; export default UserInteractionsPanel;