import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
import { SaveOptionsData } from './saveOptionsData';
export declare const importsMapLoadWebDocumentData: {
    SaveOptionsData: typeof SaveOptionsData;
};
/**
 * Contains data for load web document.
 */
export declare class LoadWebDocumentData implements ModelInterface {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the save options.
     */
    saveOptions: SaveOptionsData;
    /**
     * Gets or sets the web document URL.
     */
    loadingDocumentUrl: string;
    constructor(init?: Partial<LoadWebDocumentData>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
