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