export default class NavigateBetweenRowModel {
    previousRowId: string;
    currentRowId: string;
    rowData: any;
    constructor(previousRowId: string, currentRowId: string, rowData: any);
}
