/**
 * @author Thomas Barnekow
 * @license MIT
 */
import { XAttribute, XName, XNamespace } from '@openxmldev/linq-to-xml';
/**
 * Declares XNamespace and XName fields for the `xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"` namespace.
 */
export declare class CP {
    /**
     * Defines the XML namespace associated with the `cp` prefix.
     */
    static readonly cp: XNamespace;
    /**
     * Returns the namespace declaration `XAttribute` for this namespace.
     */
    static get namespaceDeclaration(): XAttribute;
    static readonly category: XName;
    static readonly contentStatus: XName;
    static readonly contentType: XName;
    static readonly coreProperties: XName;
    static readonly keywords: XName;
    static readonly lastModifiedBy: XName;
    static readonly lastPrinted: XName;
    static readonly revision: XName;
}
