import { Parameter } from "./../index";
export interface BillingInterface {
    applicationName?: string;
    customerCode?: string;
    userName?: string;
}
export declare class Billing implements BillingInterface, Parameter {
    applicationName?: string;
    customerCode?: string;
    userName?: string;
    constructor(data: any);
    static getApplicationNameDefault(): string;
    static getApplicationNameDescription(): string;
    static getCustomerCodeDefault(): string;
    static getCustomerCodeDescription(): string;
    static getUserNameDefault(): string;
    static getUserNameDescription(): string;
    static fromJson(data: any): Billing;
    toJson(): any;
    clone(): Billing;
}
