import { AttributeInfo } from '../internal/attributeInfo'; import { BaseEntry } from './baseEntry'; export declare const importsMapImageEntry: { BaseEntry: typeof BaseEntry; }; /** * Represents a image which will be appended to the original resource image or document. */ export declare class ImageEntry extends BaseEntry { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }