import { Type } from '@angular/core';
import { IExecution } from './i-execution';
declare type Constructor<T = any> = new (...args: any[]) => T;
export declare function FExecutionRegister<TRequest, TResponse>(requestType: Type<TRequest>): (constructor: Constructor<IExecution<TRequest, TResponse>>) => void;
export {};
