import { IConvertationOptions } from './interfaces'; import { JSONSchema7 } from 'json-schema'; import { AvroTypes } from './AvroTypes.enum'; import { AvroLogicalTypes } from './AvroLogicalTypes.enum'; export declare const convert: (jsonSchema: JSONSchema7, options?: IConvertationOptions) => { namespace: string; name: string; type: AvroTypes; doc: string | undefined; fields: any[]; }; export { AvroTypes, AvroLogicalTypes };