import { MessagingService } from './messaging/messaging.service';
import { InsightService } from './insight/insight.service';
import { TokenService } from './token/token.service';
export declare class TermiiService {
    private readonly messagingService;
    private readonly insightService;
    private readonly tokenService;
    constructor(messagingService: MessagingService, insightService: InsightService, tokenService: TokenService);
    get messaging(): MessagingService;
    get insight(): InsightService;
    get token(): TokenService;
}
