import type { DeepPartial, IHttpOperation } from '@stoplight/types'; import type { Spec } from 'swagger-schema-official'; import { Oas2HttpOperationTransformer } from '../oas/types'; import { TransformerContext } from '../types'; export declare function transformOas2Operations = DeepPartial>(document: T, ctx?: TransformerContext): IHttpOperation[]; export declare const transformOas2Operation: Oas2HttpOperationTransformer;