import type { OpenAPIV3 } from 'openapi-types'; import type { ParseContext } from '../../context/ParseContext.js'; import type { OasSecurityScheme } from './SecurityScheme.js'; type ToSecuritySchemesArgs = { securitySchemes: Record | undefined; context: ParseContext; }; export declare const toSecuritySchemesV3: ({ securitySchemes, context }: ToSecuritySchemesArgs) => // 'http' | 'apiKey' | 'oauth2' | 'openIdConnect' Record | undefined; export {}; //# sourceMappingURL=toSecuritySchemes.d.ts.map