import { AttributeInfo } from '../internal/attributeInfo';
import { SaveOptionsData } from './saveOptionsData';
export declare const importsMapDoclingSaveOptionsData: {
    SaveOptionsData: typeof SaveOptionsData;
};
/**
 * Container class for docling json save options.
 */
export declare class DoclingSaveOptionsData extends SaveOptionsData {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets a value indicating whether non-image shapes should be rendered and written to the output
     * Docling JSON document.
     * If the property is false, non-image shapes are not exported to the output document.
     * The default value is false.
     */
    renderNonImageShapes: boolean;
    constructor(init?: Partial<DoclingSaveOptionsData>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
