import { BaseObject } from './baseObject';
import { Location } from './location';
export interface GeoTargeting extends BaseObject {
    targetedLocations?: Location[];
    excludedLocations?: Location[];
}
