import { BaseObject } from './baseObject';
import { ReconciliationReportRow } from './reconciliationReportRow';
export interface ReconciliationReportRowPage extends BaseObject {
    totalResultSetSize?: number;
    startIndex?: number;
    results?: ReconciliationReportRow[];
}
