/**
 * @author Thomas Barnekow
 * @license MIT
 */
import { XAttribute, XName, XNamespace } from '@openxmldev/linq-to-xml';
/**
 * Declares XNamespace and XName fields for the `xmlns:dcterms="http://purl.org/dc/terms/"` namespace.
 */
export declare class DCTERMS {
    /**
     * Defines the XML namespace associated with the `dcterms` prefix.
     */
    static readonly dcterms: XNamespace;
    /**
     * Returns the namespace declaration `XAttribute` for this namespace.
     */
    static get namespaceDeclaration(): XAttribute;
    static readonly created: XName;
    static readonly modified: XName;
}
