import type { Schema } from 'avsc';
import type { SchemaParser, SpecTypesV2 } from '@asyncapi/parser';
type AvroSchema = Schema & {
    [key: string]: any;
};
export declare function AvroSchemaParser(): SchemaParser;
export default AvroSchemaParser;
export declare function avroToJsonSchema(avroDefinition: AvroSchema): Promise<SpecTypesV2.AsyncAPISchemaDefinition>;
