import { NgIterable } from '@angular/core';
import { RxDefaultListViewContext } from '@rx-angular/cdk/template';
export declare class RxForViewContext<T, U extends NgIterable<T> = NgIterable<T>, K = keyof T> extends RxDefaultListViewContext<T, U, K> {
    rxForOf: U;
    constructor(item: T, rxForOf: U, customProps?: {
        count: number;
        index: number;
    });
}
