import { AsyncAPIDocumentInterface } from './shims/asyncapi-parser'; /** * Load an AsyncAPI document from a string in the browser environment. * Uses the browser-specific parser that properly handles $ref resolution. * * @param input - The AsyncAPI document as a YAML or JSON string * @returns The parsed AsyncAPI document */ export declare function loadAsyncapiFromMemoryBrowser(input: string): Promise;