import { DayParts } from './DayParts';
export declare enum TimeZone {
    PUBLISHER = "PUBLISHER",
    BROWSER = "BROWSER"
}
/**
 * dayPartTargeting
 * @targetNSAlias `tns`
 * @targetNamespace `https://www.google.com/apis/ads/publisher/v202502`
 */
export interface DayPartTargeting {
    /** dayParts[] */
    dayParts?: Array<DayParts>;
    /** DeliveryTimeZone|xsd:string|PUBLISHER,BROWSER */
    timeZone?: TimeZone | keyof typeof TimeZone;
}
