export type OptionalKeys = Type extends object ? keyof { [Key in keyof Type as Type extends Required> ? never : Key]: never; } : never;