import { Schema } from '../schema'; export interface ArrayXmlOptions { xmlItemName: string; } /** * Create an array schema. * * The array must be a homogenous array confirming to the itemsSchema. Each item * will be mapped/unmapped using the itemsSchema. */ export declare function array(itemsSchema: Schema, xmlOptions?: ArrayXmlOptions): Schema; //# sourceMappingURL=array.d.ts.map