import { AsyncDirective, type Part, type PartInfo } from 'lit/async-directive.js'; /** * The `InterpolateDirective` class. * * @private */ declare class InterpolateDirective extends AsyncDirective { constructor(partInfo: PartInfo); update(_part: Part, [key, ...args]: Parameters): unknown; render(key: string, ...args: Array): unknown; /** * Formats the given string with the given arguments. * * @private */ private format; } /** * @public */ export declare const interpolate: (key: string, ...args: any[]) => import("lit/async-directive.js").DirectiveResult; export {}; //# sourceMappingURL=InterpolateDirective.d.ts.map