export type RemoveIndexSignature = { [K in keyof T as string extends K ? never : K]: T[K]; }; export type OmitWithoutIndexSignature = Omit, K>;