import { XMLElement } from '../../common/soap/xmlElement';
import { AdUnitParent } from './adUnitParent';
import { AdUnitTargetWindow } from './adUnitTargetWindow';
import { TargetPlatform } from './targetPlatform';
import { AdUnitSize } from './adUnitSize';
export declare class SuggestedAdUnit extends XMLElement {
    protected static XSI_TYPE: string;
    id: string;
    numRequests: number;
    path: string[];
    parentPath: AdUnitParent[];
    targetWindow: AdUnitTargetWindow;
    targetPlatform: TargetPlatform;
    suggestedAdUnitSizes: AdUnitSize[];
    constructor(id?: string, numRequests?: number, path?: string[], parentPath?: AdUnitParent[], targetWindow?: AdUnitTargetWindow, targetPlatform?: TargetPlatform, suggestedAdUnitSizes?: AdUnitSize[]);
}
