import type { AuthenticatedUser } from '../../common/interfaces/authenticated-user.interface';
import { DashboardService } from './dashboard.service';
export declare class DashboardController {
    private readonly dashboardService;
    constructor(dashboardService: DashboardService);
    build(user: AuthenticatedUser): Promise<import("./dashboard.service").DashboardResponse>;
}
