import { PagePublicService } from './page-public.service';
import type { RequestWithTenant } from '@/middleware/public-tenant.middleware';
export declare class PagePublicController {
    private readonly pagePublicService;
    constructor(pagePublicService: PagePublicService);
    getHomepage(req: RequestWithTenant): Promise<import("./entities/page.entity").Page>;
    findBySlug(slug: string, req: RequestWithTenant): Promise<import("./entities/page.entity").Page>;
}
