import { AppPromotionEnums } from '../app_promotion_api'; export declare enum AudienceListType { Suppression = "suppression_static", Targeting = "targeting" } export declare class AudienceListMeta { private _name; private _type; private _description; private _bundleId; private _platform; constructor(name: string, type: AudienceListType, description: string, options?: { bundleId?: string; platform?: AppPromotionEnums.PLATFORM; }); toObject(): any; } export declare class AudienceListData { private _listIdsToAdd; private _listIdsToRemove; private _deviceList; addAudienceListToUpdate(audienceListId: string): void; addAudienceListToRemove(audienceListId: string): void; addDevices(devices: string[]): void; addDevices(device: string): void; toObject(): any; }