I trying import {SecurityRequirementObject} from 'openapi3-ts' but getting ``` TS2305: Module "openapi3-ts" has no exported member SecurityRequirementObject ``` I see this export here: https://github.com/metadevpro/openapi3-ts/blob/master/src/model/openapi31.ts currently i recreating this type locally ``` export type SecurityRequirementObject = { [key: string]: string[] } ```