import { View } from "../view.js";
import { Binder } from "../binder.js";
export declare class EachStarBinder extends Binder<any[], HTMLElement> {
    static key: string;
    static block: boolean;
    priority: number;
    iterated: View[];
    bind(el: HTMLElement): void;
    unbind(): void;
    routine(el: HTMLElement, collection: any[]): void;
    update(models: any): void;
}
