import { XMLElement } from '../../common/soap/xmlElement';
import { GoalType } from './goalType';
import { UnitType } from './unitType';
export declare class Goal extends XMLElement {
    protected static XSI_TYPE: string;
    goalType: GoalType;
    unitType: UnitType;
    units: number;
    constructor(goalType?: GoalType, unitType?: UnitType, units?: number);
}
