import type { InsightsRequest } from '../../../../public-api/types';
import type { PublicAPIEndpoint } from '../../shared/handler.types';
type InsightsHandlers = {
    getInsightsSummary: PublicAPIEndpoint<InsightsRequest.GetSummary>;
};
declare const insightsHandlers: InsightsHandlers;
export = insightsHandlers;
