import { OnChanges, TemplateRef, ViewContainerRef } from '@angular/core';
/**
* Structural directive for template repeating.
*
*
* ### Usage
*
* ```html
*
* Content
*
* ```
*
*
* ##№ Example
*
* * collection:rating - [sources](https://github.com/ngx-kit/ngx-kit/tree/master/packages/collection/lib/ui-rating),
* [demo](http://ngx-kit.com/collection/module/ui-rating)
*
*
* @todo do not recreate all views on changes.
*/
export declare class KitRepeatDirective implements OnChanges {
private vcr;
private template;
/**
* Number of repeats.
*/
kitRepeat: number;
private componentRef;
constructor(vcr: ViewContainerRef, template: TemplateRef);
ngOnChanges(): void;
}