/** * Copyright © 2022 Anagog Ltd. All rights reserved. */ export declare class Campaign { readonly title: string; readonly identifier: string; constructor(title: string, identifier: string); /** * Simulate this campaign, use this API to test your campaigns as defined. */ simulate(): void; }