import { DataElement } from "../types/index.js";
import { Binder } from "../binder.js";
export declare class MustacheTextBinder extends Binder<string, DataElement> {
    static key: string;
    routine(node: DataElement, value: string): void;
}
