export type SubsetPropertyAssertsDict<T> = {
  [key in keyof T]?:
    | T[key]
    | PropertyAssertsLambda<T[key]>
    | RegExp