import { ReligionsService } from './religions.service'; export declare class ReligionsController { private readonly religionsService; constructor(religionsService: ReligionsService); getAllReligions(): { count: number; religions: { name: string; displayName: string; origin: string; practitioners: string; legalStatus: string; }[]; thesis: string; }; getReligion(name: string): any; getReligionMyths(name: string): { religion: any; mythCount: any; myths: any; academicSources: any; conclusion: string; }; getReligionLegal(name: string): { religion: any; currentStatus: any; victories: any; landmarkCase: string; }; }