export type Prefix = '_Module' export type ExcludePrefixKeys = { [K in keyof T as K extends `${Prefix}${string}` ? never : K]: T[K] }