import { XMLElement } from '../../common/soap/xmlElement';
import { CustomCriteriaSet } from './customCriteriaSet';
import { InventoryTargeting } from './inventoryTargeting';
export declare class FirstPartyAudienceSegmentRule extends XMLElement {
    protected static XSI_TYPE: string;
    inventoryRule: InventoryTargeting;
    customCriteriaRule: CustomCriteriaSet;
    constructor(inventoryRule?: InventoryTargeting, customCriteriaRule?: CustomCriteriaSet);
}
