import NotFoundController from './NotFoundController';
export default class BlogPostController extends NotFoundController {
    protected config: BlogControllerCtorConfig;
    constructor(config: BlogControllerCtorConfig);
    action({ postSlug }: BlogPostControllerActionParams): Promise<{
        code: number;
        headers: {
            'content-type': string;
        };
        body: string;
    }>;
}
//# sourceMappingURL=BlogPostController.d.ts.map