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