import { XMLElement } from '../../common/soap/xmlElement';
export declare class Money extends XMLElement {
    protected static XSI_TYPE: string;
    currencyCode: string;
    microAmount: number;
    constructor(currencyCode?: string, microAmount?: number);
}
