import NotFoundController from './NotFoundController';
export default class PageController extends NotFoundController implements ControllerInterface<PageControllerActionParams> {
    protected config: PageControllerCtorConfig;
    constructor(config: PageControllerCtorConfig);
    action({ filepath }: PageControllerActionParams): Promise<{
        code: number;
        headers: {
            'content-type': string;
        };
        body: string;
    }>;
}
//# sourceMappingURL=PageController.d.ts.map