import { XMLElement } from '../../common/soap/xmlElement';
import { ContentBundle } from './contentBundle';
export declare class ContentBundlePage extends XMLElement {
    protected static XSI_TYPE: string;
    totalResultSetSize: number;
    startIndex: number;
    results: ContentBundle[];
    constructor(totalResultSetSize?: number, startIndex?: number, results?: ContentBundle[]);
}
