import { AdUnit } from './adUnit';
import { BaseObject } from './baseObject';
export interface AdUnitPage extends BaseObject {
    totalResultSetSize?: number;
    startIndex?: number;
    results?: AdUnit[];
}
