import { AttributeInfo } from '../internal/attributeInfo';
import { LinkElement } from './linkElement';
export declare const importsMapDocumentProperty: {
    LinkElement: typeof LinkElement;
};
/**
 * Words document property DTO.
 */
export declare class DocumentProperty extends LinkElement {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the name of the document property.
     */
    name: string;
    /**
     * Gets or sets the value of the document property.
     */
    value: string;
    /**
     * Gets or sets a value indicating whether the property is built-in or not.
     * If true the property is built-in, if false the property is custom.
     */
    builtIn: boolean;
    constructor(init?: Partial<DocumentProperty>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
