import { XMLElement } from '../../common/soap/xmlElement';
import { BillingCap } from './billingCap';
import { BillingSchedule } from './billingSchedule';
import { BillingSource } from './billingSource';
export declare class CompanySettings extends XMLElement {
    protected static XSI_TYPE: string;
    billingCap: BillingCap;
    billingSchedule: BillingSchedule;
    billingSource: BillingSource;
    advertiserDiscount: number;
    valueAddedTax: number;
    agencyCommission: number;
    constructor(billingCap?: BillingCap, billingSchedule?: BillingSchedule, billingSource?: BillingSource, advertiserDiscount?: number, valueAddedTax?: number, agencyCommission?: number);
}
