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