import { JsonCustomConvert } from "json2typescript";
export declare class SubClassOfConverter implements JsonCustomConvert<string[]> {
    serialize(subclasses: string[]): any;
    deserialize(items: any): string[];
}
