import type { Response } from 'express';
import { PostService } from './post.service';
export declare class LegacyBlogController {
    private readonly postService;
    constructor(postService: PostService);
    redirectLegacy(slug: string, res: Response): Promise<void>;
}
