import { BaseObject } from './baseObject';
import { Technology } from './technology';
export interface BandwidthGroupTargeting extends BaseObject {
    isTargeted?: boolean;
    bandwidthGroups?: Technology[];
}
