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<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    constructor(init?: Partial<ImageEntry>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
