import { schema, Schema } from 'avsc'; import { Convert } from '../types'; export declare const isUnion: (type: Schema) => type is ("string" | "boolean" | "null" | "int" | "long" | "float" | "double" | "bytes" | schema.NamedType)[]; export declare const convertUnionType: Convert;