import { Binder } from "../binder.js";
import { View } from "../view.js";
export declare class IfBinder extends Binder<boolean> {
    static key: string;
    static block: boolean;
    priority: number;
    attached: boolean;
    nested?: View;
    bind(el: HTMLUnknownElement): void;
    unbind(): void;
    routine(el: HTMLElement, value: boolean): void;
    update(models: any): void;
}
