/**
 * @author Thomas Barnekow
 * @license MIT
 */
import { XAttribute, XName, XNamespace } from '@openxmldev/linq-to-xml';
/**
 * Declares XNamespace and XName fields for the `xmlns:a16="http://schemas.microsoft.com/office/drawing/2014/main"` namespace.
 */
export declare class A16 {
    /**
     * Defines the XML namespace associated with the `a16` prefix.
     */
    static readonly a16: XNamespace;
    /**
     * Returns the namespace declaration `XAttribute` for this namespace.
     */
    static get namespaceDeclaration(): XAttribute;
    /**
     * Represents the `a16:colId` XML element.
     *
     * @remarks
     * As an XML element, it has the following:
     * - parent XML elements: {@linkcode A.graphicData a:graphicData}
     */
    static readonly colId: XName;
    /**
     * Represents the `a16:creationId` XML element.
     *
     * @remarks
     * As an XML element, it has the following:
     * - parent XML elements: {@linkcode A.ext a:ext}, {@linkcode A.graphicData a:graphicData}
     */
    static readonly creationId: XName;
    /**
     * Represents the `a16:cxnDERefs` XML element.
     *
     * @remarks
     * As an XML element, it has the following:
     * - parent XML elements: {@linkcode A.graphicData a:graphicData}
     */
    static readonly cxnDERefs: XName;
    /**
     * Represents the `a16:predDERef` XML element.
     *
     * @remarks
     * As an XML element, it has the following:
     * - parent XML elements: {@linkcode A.ext a:ext}, {@linkcode A.graphicData a:graphicData}
     */
    static readonly predDERef: XName;
    /**
     * Represents the `a16:rowId` XML element.
     *
     * @remarks
     * As an XML element, it has the following:
     * - parent XML elements: {@linkcode A.graphicData a:graphicData}
     */
    static readonly rowId: XName;
}
