import { Exception } from "@tsed/exceptions";
import type { PlatformContext } from "../../platform/domain/PlatformContext";
import { ErrorFilter } from "./ErrorFilter";
export declare class ExceptionFilter extends ErrorFilter {
catch(error: Exception, ctx: PlatformContext): void;
}