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