import { schema, Schema } from 'avsc'; import { Convert, Context } from '../types'; declare type WrappedUnionItem = schema.RecordType | 'null'; export declare const isWrappedUnion: (type: Schema, context: Context) => type is WrappedUnionItem[]; export declare const convertWrappedUnionType: Convert; export {};