import { Parameter } from "./../index";
export interface XmpNamespaceInterface {
    namespaceName?: string;
    namespacePrefix?: string;
    namespaceURI?: string;
}
export declare class XmpNamespace implements XmpNamespaceInterface, Parameter {
    namespaceName?: string;
    namespacePrefix?: string;
    namespaceURI?: string;
    constructor(data: any);
    static getNamespaceNameDefault(): string;
    static getNamespaceNameDescription(): string;
    static getNamespacePrefixDefault(): string;
    static getNamespacePrefixDescription(): string;
    static getNamespaceURIDefault(): string;
    static getNamespaceURIDescription(): string;
    static fromJson(data: any): XmpNamespace;
    toJson(): any;
    clone(): XmpNamespace;
}
