import { InputValues } from "../utils/types/index.js"; import { Runnable } from "../runnables/base.js"; import { TypedPromptInputValues } from "./base.js"; import { TemplateFormat } from "./template.js"; //#region src/prompts/dict.d.ts declare class DictPromptTemplate = Record> extends Runnable, RunOutput> { lc_namespace: string[]; lc_serializable: boolean; template: Record; templateFormat: TemplateFormat; inputVariables: Array>; static lc_name(): string; constructor(fields: { template: Record; templateFormat?: TemplateFormat; }); format(values: TypedPromptInputValues): Promise; invoke(values: TypedPromptInputValues): Promise; } //#endregion export { DictPromptTemplate }; //# sourceMappingURL=dict.d.ts.map