export interface RecentByPersonParams { accountId: string; personId: string; sinceDays?: number; limit?: number; } export interface SessionSummary { sessionId: string; startedAt: string; lastSeenAt: string; pageviewCount: number; clickCount: number; maxScrollDepth: number; listingSlugs: string[]; dwellMs: number; } export declare function visitorRecentByPerson(p: RecentByPersonParams): Promise<{ sessions: SessionSummary[]; }>; //# sourceMappingURL=visitor-recent-by-person.d.ts.map