import type { DeepPartial, Dictionary, HttpSecurityScheme } from '@stoplight/types'; import type { OpenAPIObject, SecuritySchemeObject } from 'openapi3-ts'; export declare type OperationSecurities = Dictionary[] | undefined; export declare function getSecurities(document: DeepPartial, operationSecurities?: unknown): [key: string, security: Omit][][]; export declare function getScopeKeys(scheme: Omit): string[] | undefined;