export interface AnalyticsRecord { what: string; viewed_last_7_days: string; percentage_of_views_last_7_days: string; like_count: string; 't-7': number; 't-6': number; 't-5': number; 't-4': number; 't-3': number; 't-2': number; 't-1': number; } /** * Fetches analytics popularity data from the protected API. * Shared by useDynamicContent, usePopularity, and useFetchMostPopularFiles. */ export declare function fetchAnalyticsPopularity(instanceId: string, entityType: string, accessToken: string, apiOrigin?: string): Promise;