1 | import { NodePart } from "lit-html";
|
2 | import { Values, ValuesCallback } from "./model";
|
3 | /**
|
4 | * Directive that makes translations more efficient.
|
5 | * @param key
|
6 | * @param values
|
7 | * @param listen
|
8 | */
|
9 | export declare const translate: (key: string, values?: Values | ValuesCallback | undefined, listen?: boolean) => (part: NodePart) => void;
|