import { IPropertyClass, IRenderResult } from "../interface/i-property-class";
import { UniqueArray } from "./unique-array";
export declare class InterfaceArrayProperty implements IPropertyClass {
    originalName: string;
    refClassName: string;
    interfaceName: string;
    fileName: string;
    description: Array<string>;
    imports: UniqueArray<string>;
    constructor(originalName: string, _import: string, refClassName: string);
    private convertName;
    render(): IRenderResult;
}
