/**
 * @export
 * @class XmlNamespace
 */
export declare class XmlNamespace {
    /**
     * Name of the XML Namespace reference (required)
     * @type {string}
     * @memberof XmlNamespace
     */
    prefix?: string;
    /**
     * Source of the XML Namespace reference (required)
     * @type {string}
     * @memberof XmlNamespace
     */
    uri?: string;
    constructor(obj?: Partial<XmlNamespace>);
}
export default XmlNamespace;
