import IXmlActions from "./IXmlActions"; import { IXmlType } from "./IXmlType"; interface IElementOptions { name: string; value: any; type?: IXmlType; forceQualify?: boolean; } interface ISerializeOptions extends IElementOptions { actions: IXmlActions; } declare const namespaces: (type: IXmlType, actions: IXmlActions) => void; declare const serialize: (opts: ISerializeOptions) => void; export { serialize, namespaces, ISerializeOptions, IElementOptions };