import AbstractModel from './AbstractModel'; export default class ArrayModel extends AbstractModel { type: string; __description: any; __items: any; properties: any; example: any; __minItems: any; __maxItems: any; description(description: any): this; items(items: any): this; minItems(minItems: any): this; maxItems(maxItems: any): this; getType(): string; setType(type: any): void; getDescription(): any; setDescription(description: any): void; getItems(): any; setItems(items: any): void; getProperties(): any; setProperties(properties: any): void; getExample(): any; setExample(example: any): void; getMinItems(): any; setMinItems(minItems: any): void; getMaxItems(): any; setMaxItems(maxItems: any): void; clone(): ArrayModel; }