import { BaseObject } from './baseObject';
import { CustomTargetingKeyAction } from './customTargetingKeyAction';
import { Statement } from './statement';
export interface PerformCustomTargetingKeyAction extends BaseObject {
    customTargetingKeyAction?: CustomTargetingKeyAction;
    filterStatement?: Statement;
}
