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; imports: UniqueArray; constructor(originalName: string, _import: string, refClassName: string); private convertName; render(): IRenderResult; }