import { HttpClient, NonNullablePaths, MaybeContext, BuildRESTFunction } from '@wix/sdk-types'; import { GetStatisticsOptions, GetStatisticsResponse } from './index.typings.js'; export { ChatHandler, ChatHandlerWithLiterals, Daily, GetStatisticsRequest, Period, PeriodWithLiterals, Statistics, Timespan } from './index.typings.js'; declare function getStatistics$1(httpClient: HttpClient): GetStatisticsSignature; interface GetStatisticsSignature { /** * Retrieves aggregated AI Site-Chat statistics for the authenticated site. */ (options?: GetStatisticsOptions): Promise>; } declare const getStatistics: MaybeContext & typeof getStatistics$1>; export { GetStatisticsOptions, GetStatisticsResponse, getStatistics };