import { AppService } from './app.service'; export declare class AppController { private readonly appService; constructor(appService: AppService); getRoot(): { service: string; version: string; message: string; endpoints: { health: string; swagger: string; tts: string; voice: string; personality: string; }; }; getHealth(): { status: string; service: string; version: string; timestamp: string; personalities: { 'neko-arc': string; mario: string; noel: string; glam: string; hannibal: string; tetora: string; }; modules: { tts: boolean; voice: boolean; personality: boolean; }; message: string; }; }