import Type = require('./Type'); import ITypeStatic = require('./ITypeStatic'); import IEmbeddedAnnotation = require('../../Entity/Annotation/IEmbeddedAnnotation'); export = Array; declare class Array extends Type { private itemType; private itemEmbedded; ItemType: Type; ItemEmbedded: IEmbeddedAnnotation; constructor(item: Type | ITypeStatic | IEmbeddedAnnotation, nullable?: boolean); }