import type { BentoClient } from '../client'; import type { SiteStats, SegmentStats, ReportStats } from './types'; export declare class BentoStats { private readonly _client; private readonly _url; constructor(_client: BentoClient); /** * Retrieves overall statistics for the site * @returns Promise */ getSiteStats(): Promise; /** * Retrieves statistics for a specific segment * @param segmentId ID of the segment to get stats for * @returns Promise */ getSegmentStats(segmentId: string): Promise; /** * Retrieves statistics for a specific report * @param reportId ID of the report to get stats for * @returns Promise */ getReportStats(reportId: string): Promise; }