import { IHttpClient } from "../../dal"; import { IDriveItemActivity } from "../../model/sharepoint/DriveItemAnalytics"; export declare class PageAdvancedAnalyticsService { protected httpClient: IHttpClient; protected siteUrl: string; constructor(httpClient: IHttpClient, siteUrl: string); getPageActivity(driveId: string, itemId: string, startDate?: Date | undefined, endDate?: Date | undefined, interval?: string): Promise; }