import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
export declare const importsMapXmlDataLoadOptions: {};
/**
 * Represents options for XML data loading.
 * To learn more, visit the LINQ Reporting Engine documentation article.
 * An instance of this class can be passed into constructors of XmlDataSource.
 */
export declare class XmlDataLoadOptions implements ModelInterface {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets a flag indicating whether a generated data source will always contain an object for an XML root
     * element. If an XML root element has no attributes and all its child elements have same names, such an object
     * is not created by default.
     * The default value is false.
     */
    alwaysGenerateRootObject: boolean;
    constructor(init?: Partial<XmlDataLoadOptions>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
