import { ThemesService } from './themes.service'; export declare class ThemesController { private readonly themesService; constructor(themesService: ThemesService); getAllThemes(): { count: number; themes: { name: string; title: string; description: string; }[]; }; getTheme(name: string): any; }