import { Children } from './Children';
export declare enum LogicalOperator {
    AND = "AND",
    OR = "OR"
}
/**
 * customTargeting
 * @targetNSAlias `tns`
 * @targetNamespace `https://www.google.com/apis/ads/publisher/v202408`
 */
export interface CustomTargeting {
    /** CustomCriteriaSet.LogicalOperator|xsd:string|AND,OR */
    logicalOperator?: LogicalOperator | keyof typeof LogicalOperator;
    /** children[] */
    children?: Array<Children>;
}
