import type { JsonPath } from '@stoplight/types'; declare type OperationObject = Record; declare type AsyncAPI = { channels?: Record; }; declare type Result = { path: JsonPath; kind: 'subscribe' | 'publish'; operation: OperationObject; }; export declare function getAllOperations(asyncapi: AsyncAPI): IterableIterator; export {};