import { XMLElement } from '../../common/soap/xmlElement';
import { Location } from './location';
export declare class GeoTargeting extends XMLElement {
    protected static XSI_TYPE: string;
    targetedLocations: Location[];
    excludedLocations: Location[];
    constructor(targetedLocations?: Location[], excludedLocations?: Location[]);
}
