export default class NotFoundController implements ControllerInterface {
    protected config?: NotFoundControllerCtorConfig | undefined;
    constructor(config?: NotFoundControllerCtorConfig | undefined);
    handleError(err: Error): {
        code: number;
        headers: {
            'content-type': string;
        };
        body: string;
    };
    action(params: {}): Promise<ResponseInterface>;
}
//# sourceMappingURL=NotFoundController.d.ts.map