import { Size } from './Size'; export declare enum EnvironmentType { BROWSER = "BROWSER", VIDEO_PLAYER = "VIDEO_PLAYER" } /** * adUnitSizes * @targetNSAlias `tns` * @targetNamespace `https://www.google.com/apis/ads/publisher/v202508` */ export interface AdUnitSizes { /** size */ size?: Size; /** EnvironmentType|xsd:string|BROWSER,VIDEO_PLAYER */ environmentType?: EnvironmentType | keyof typeof EnvironmentType; /** companions[] */ companions?: Array; /** xsd:string */ fullDisplayString?: string; /** xsd:boolean */ isAudio?: boolean; }