import { AsyncAPISchema } from '@mintlify/common/asyncapi';
export declare const getAsyncApiDefinition: (pathOrDocumentOrUrl: string | AsyncAPISchema | URL) => Promise<{
    document: AsyncAPISchema;
    isUrl: boolean;
}>;
