import AdCommandBase, { AdCommandData, AdCommandParams } from './adCommandBase'; import { ActivityType } from '../models/activityType'; declare class ViewedAdMidpointCommand extends AdCommandBase { activityType: ActivityType; constructor(params: AdCommandParams); buildAdCommandData(): AdCommandData; } export default ViewedAdMidpointCommand;