export default class HandlerDecorator {
    static ErrorHandling(handler: ErrorHandler): MethodDecorator;
}
declare type ErrorHandler = (error: any) => void;
declare type MethodDecorator = (target: any, name: string, descriptor: any) => void;
export {};
