Using any FormComponent in typescript with validations throws following type error.
... is missing the following properties from type 'Validations': contains, equals, isAlpha, isAlphanumeric, and 62 more.
The FormComponent.d.ts needs following change.
type Validations = Partial<{ [Key in keyof Validators]: ParametersAfterFirst<Validators[Key]> }>