export type ValidWords<T extends string> = T extends "" ? "valid" : T extends `the${infer Rest}` | `of${infer Rest}` | `and${infer Rest}` | ...