export type OnlyKeysWithStructure = { [P in keyof T]: T[P] extends TStructure ? P : never; }[keyof T];