import { JsonCustomConvert } from "json2typescript";
/**
 * @category Internal
 */
export declare class UnionStringArrayOfStringsConverter implements JsonCustomConvert<string[]> {
    serialize(el: string[]): any;
    deserialize(el: any): string[];
}
