export type Visit = { time: number; title: string; url: string; browser: string; }; export type Search = { time: number; query: string; engine: string; browser: string; }; export type RecentActivity = { visits: Visit[]; searches: Search[]; }; /** * Read recent browsing + searches across every installed browser. `sinceDays` * bounds recency (default 14), `limit` caps the merged result per category. */ export declare function readRecentActivity(opts?: { limit?: number; sinceDays?: number; }): Promise;