import { Request } from "express"; import { AuthService } from "./common/services/AuthService"; import { ProfileDTO } from "./common/models/ProfileDTO"; export declare class AppController { private readonly authService; protected dappName: string; constructor(authService: AuthService); protected getHello(): string; protected getProfile(req: Request): Promise; }