import { BaseObject } from './baseObject';
import { GoalType } from './goalType';
import { UnitType } from './unitType';
export interface Goal extends BaseObject {
    goalType?: GoalType;
    unitType?: UnitType;
    units?: number;
}
