import { AsyncAPIDocumentInterface, AsyncAPIParserInput } from '../types/asyncapi.js';
export type ValidateAsyncApiResult = {
    valid: boolean;
    errorMessage?: string;
    document?: AsyncAPIDocumentInterface;
};
export declare function validateAsyncApi(str: AsyncAPIParserInput): Promise<ValidateAsyncApiResult>;
